使用 JQuery 克隆事件的简单数学函数
对于我的每个 .cloned 字段,我想 (txtA/txtB) = txtC
写出文本字段 C 的答案
<table>
<tr>
<td><input type="text" id="txtA" name="txtA"></td>
<td><input type="text" id="txtB" name="txtB"></td>
<td><input type="text" id="txtC" name="txtC" readonly="readonly" tabIndex="-1" value=""></td>
</tr>
</table>
。JS:
// Clone table rows
$(function() {
var i = 1;
$("#txtA").change(function() {
$("table tr:first").clone(true).find("input").each(function() {
$(this).val('').attr('id', function(_, id) { return id + i });
$(this).val('').attr('name', function(_, id) { return id + i });
}).end().appendTo("table");
i++;
});
// JQuery Math function
});
For each of my .cloned fields, I'd like to (txtA/txtB) = txtC
Write out the answer to textfield C.
<table>
<tr>
<td><input type="text" id="txtA" name="txtA"></td>
<td><input type="text" id="txtB" name="txtB"></td>
<td><input type="text" id="txtC" name="txtC" readonly="readonly" tabIndex="-1" value=""></td>
</tr>
</table>
JS:
// Clone table rows
$(function() {
var i = 1;
$("#txtA").change(function() {
$("table tr:first").clone(true).find("input").each(function() {
$(this).val('').attr('id', function(_, id) { return id + i });
$(this).val('').attr('name', function(_, id) { return id + i });
}).end().appendTo("table");
i++;
});
// JQuery Math function
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定第二个代码示例应该做什么,但如果您想将 txtA 中的值除以 txtB 并将其存储在 txtC 中,可以按以下方法操作:
I'm not sure what that second code sample is supposed to do, but if you want to divide the value in txtA by txtB and store it in txtC, here's how you could do that: