使用 JQuery 克隆事件的简单数学函数

发布于 2024-12-21 11:16:13 字数 842 浏览 1 评论 0原文

对于我的每个 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

徒留西风 2024-12-28 11:16:13

我不确定第二个代码示例应该做什么,但如果您想将 txtA 中的值除以 txtB 并将其存储在 txtC 中,可以按以下方法操作:

$("#txtC").val(  $("#txtA").val() / $("#txtB").val() );

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:

$("#txtC").val(  $("#txtA").val() / $("#txtB").val() );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文