使用 JavaScript 动态计算总和
我有两个文本框 Num1
和 Num2
以及另一个文本框 Sum
,其值为 10
。
我该如何做到这一点,如果用户为 Num1
输入一个数字,它会将其添加到 Sum
并动态更改 Sum
中显示的数字代码>文本框。如果用户在 Num2
中输入数字,它还会将该数字添加到 Sum
文本框中显示的更新数字,并动态更改 Sum
的值> 文本框也。
如何在 JavaScript 中做到这一点?
I have two textboxes Num1
and Num2
and another textbox Sum
having the value 10
.
How can I do this wherein if the user will enter a number for Num1
, it will add it to Sum
and dynamically change the displayed number in the Sum
textbox. If the user will enter a number in Num2
it will also add that number to the updated number shown in Sum
textbox and dynamically change the value for Sum
textbox also.
How to do this in Javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
像这样的东西:
Something like that:
另一个版本。
Another version.
还有其他方法可以引用表单项,但此一种有效。
There are other ways to reference the form items, but this one works.