如何在jquery上以数字方式添加数值顺序

时间:2018-11-13 05:46:19

标签: javascript jquery frontend

我被告知要在表上添加数字顺序,但条件是,当您添加表时,它会从零开始计数,然后删除该表会抛出动态顺序,而不是3-5(如果我删除4),我的意思是应该维护订单列表1-2-3-4-5我有一个大代码,不想将其放在此处。我有功能和

$('td.form_id').each(function(i) {
  $(this).text(i + 1);
});

我想将其应用于我的功能。

关于我的函数的简短说明,当我单击它时,我有一个带有隐藏ID的表,它向我显示了表

<table id="tablo">
  <thead>
    <tr>
      <th></th>
      <th id="tab">Name</th>
      <th id="tab">surname</th>
      <th id="tab">string</th>

      <td>
        <input style="background-color:green; color: white; width: 135px" type="button" class="add" value="Əlavə+">
      </td>

    </tr>
    <tr hidden class="form_id">
      <td>
        <input type="text" style='width:250px'>
      </td>
      <td>
        <input type="text" style='width:250px'>
      </td>
      <td>
        <input type="text" style='width:250px'>
      </td>
      <td>
        <span><a class='fa fa-edit save' style='margin-left:30px' href='javascript: void(0);'>saxla</a></span>
      </td>
    </tr>
  </thead>
  <tbody>
    <tr>

    </tr>
  </tbody>

还有一个函数,该函数每次都会在附加这样的内容的情况下出现在表中

$(document).ready(function() {

  $(".add").click(function() {

    //$("#td").show();
    var value = "<tr><td class='form_id' style='width:20px' >" + i + "</td><td  style='width:250px'><input type='text'  style='width:250px'></td><td  style='width:250px'><input type='text'  style='width:250px'></td><td  style='width:250px'><input type='text'  style='width:250px'></td><td><span ><a class='fa fa-edit save' style='margin-left:30px' href='javascript: void(0);'>saxla</a></span><span class='delete' style='margin-left:30px'><a class='glyphicon glyphicon-trash'href='javascript: void(0);'>delete</a></span></td>";
    $("table tbody").append(value);

  });
});

1 个答案:

答案 0 :(得分:0)

 $(document).ready(function() {

  $(".add").click(function() {

    //$("#td").show();
    var value = "<tr><td class='form_id' style='width:20px' >" + i + "</td><td  style='width:250px'><input type='text'  style='width:250px'></td><td  style='width:250px'><input type='text'  style='width:250px'></td><td  style='width:250px'><input type='text'  style='width:250px'></td><td><span ><a class='fa fa-edit save' style='margin-left:30px' href='javascript: void(0);'>saxla</a></span><span class='delete' style='margin-left:30px'><a class='glyphicon glyphicon-trash'href='javascript: void(0);'>delete</a></span></td>";
    $("table tbody").append(value);


    var i=1;
    $("tbody").find("tr").each(function(){
         $(this).find("td.form_id").html(i);
         i++
    });



  });
});