jQuery:如何从相应数组中减去数组中每个文本输入字段的数值?
我有两组这样的输入字段,按其类别进行区分:
<div>
<input type="text" class="columnone" />
<input type="text" class="columnone" />
<input type="text" class="columnone" />
</div>
<div>
<input type="text" class="columntwo" />
<input type="text" class="columntwo" />
<input type="text" class="columntwo" />
</div>
进行必要的验证以确保用户只能将整数值输入到这些字段中。
如何从 change()
上的 .columnone
中相应字段的值中减去 .columntwo
中每个输入字段的值特定的 .columntwo
文本字段?空值应被视为零。
例如,在 columntwo
中第一个输入字段的 change()
上,减去 .columntwo
中第一个输入字段的值来自 .columntwo
中的第一个字段。其他字段保持不变。
提前致谢!
I have two sets of of input fields like this, differentiated by their classes:
<div>
<input type="text" class="columnone" />
<input type="text" class="columnone" />
<input type="text" class="columnone" />
</div>
<div>
<input type="text" class="columntwo" />
<input type="text" class="columntwo" />
<input type="text" class="columntwo" />
</div>
Necessary validations are in place to ensure that only integer values can be input by the user into these fields.
How do I subtract the value of each input field in .columntwo
from the value in the corresponding field in .columnone
on change()
in that particular .columntwo
text field? Null values should be considered zero.
For example, on change()
in the first input field in columntwo
, subtract the value of the first input field in .columntwo
from the first field in .columntwo
. Other fields remain unchanged.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您没有任何其他具有类columnone或columntwo的元素,您可以这样做
Under the assumption that you don't have any other elements with class columnone or columntwo, you can do
这有点复杂,但它会起作用。这是假设您想以两种方式触发该函数(columntwo 和 columnone),
这是小提琴: http://jsfiddle .net/fJLAw/
This is a bit convoluted, but it will work. This works on the assumption that you want to trigger the function both ways (columntwo and columnone)
Here's the fiddle : http://jsfiddle.net/fJLAw/