我一直在到处寻找这个脚本,但是我找不到它。我正在尝试创建一个简单的捐赠计数。在文本框中添加值时,我希望在按钮提交后将其永久固定到第二个文本框中。提前感谢您的所有帮助。
问问题
55 次
2 回答
1
1)首先从 textBox1 获取值(假设 id= textbox1
)
2)将值分配给第二个文本框(假设 id= textbox2
)
3)在表单提交或按钮单击中添加以下代码。
document.getElementById('textbox2').value =
document.getElementById('textbox1').value
于 2013-10-04T09:08:21.187 回答
0
Try this:
<script>
window.onload = function () {
var textfield6 = document.getElementById('textfield6');
textfield6.value = 0;
document.querySelector('input[type=button]').onclick = function () {
textfield6.value = parseInt(textfield6.value) + parseInt(document.getElementById('textfield5').value);
}
}
</script>
Demo here
于 2013-10-04T09:55:31.057 回答