使用jQuery的动态表的序列号

时间:2016-02-22 09:43:29

标签: jquery html5 serialization

我有一个动态表,有2个动态行。学生及其科目和分数。代码如下:

Click here to view the code

  

序列号代码

 function numberRows() {
      $('input[name^="SNo"]').each(function(i) {
            $(this).val(i + 1);
      });
        }
    numberRows();
  

输出:

enter image description here

  

预期输出

enter image description here

序列号不是动态生成的。哪里可能出错了?非常感谢任何帮助/建议! :)

1 个答案:

答案 0 :(得分:1)

您正在调用函数

 numberRows();

返回声明后。更新逻辑或在后处理返回调用时调用它。喜欢 - https://jsfiddle.net/jqus6bmw/