したがって、ページが読み込まれると、テキストボックスに保存された値が含まれます。ユーザーに「+」ボタンを押してもらいたいのですが、テキストボックスの値が1つ増えます。これはJQueryで行われていると思います...これまでのところどこから始めればよいかについてのアイデアはあります...
<input type="text" name="BoqTextBox" id="BoqTextBox" value="0" />
<input type="Button" value="+" onclick="AddOne(document.getElementById('BoqTextBox').value)" />
<script>
function Add(data) {
//so the current digit is passed to here, where I need to do some funky code
//where it increments the current digit by one and stores it in BoqTextBox - replacing the old digit.
//Also to note if the text box contains 124.54 for example and + is pressed
//then new value will be 125.54
}
</script>
これに関するどんな援助も素晴らしいでしょう。
ありがとうございました
... data = data + 1のようなものですが、テキストボックスに値を返すにはどうすればよいですか?