如何添加新表行?

时间:2014-09-17 19:41:52

标签: javascript jquery html

我在点击复选框时尝试创建新行。我尝试使用.after().insertAfter()无济于事。

有人可以指出我正确的方向吗?

http://jsfiddle.net/uf0jhd9w/c

HTML:

 <tr class="itemSize">
        <td>
          <span class="danger">*</span><label for="itemSize">Product Sizes:</label>
        </td>
        <td>
          <label for="extra_small">XS</label><input type="checkbox" name="extra_small" id="extra_small" value="XS">
          <label for="small">S</label><input type="checkbox" name="small" id="small" value="S">
          <label for="medium">M</label><input type="checkbox" name="medium" id="medium" value="M">
          <label for="large">L</label><input type="checkbox" name="large" id="large" value="L">
         </td>
      </tr>

jQuery的:

$('#extra_small,#small,#medium, #large, #extra_large').on('change',function(){
    var $sizeTr = $('.itemSize');
    if(this.checked){
      console.log("checked");
      var size = $(this).attr("id");
      var html = 
      '<tr class="'+size+'_quantity">'+
       '<td>'+
          '<span class="danger">*</span><label for="itemQuantity">'+size+' Stock Quantity:</label>'+
        '</td>'+
        '<td>'+
          '<input type="number" min="1" name="itemQuantity" placeholder="Enter Product Quantity" value=""/>'+
        '</td>'+
      '</tr>';
      //$('.itemSize').after(html);
      $(html).insertAfter($sizeTr);
      //console.log( $(html));
    }else{
      $('tr.'+size+'_quantity').hide();
    }
  });

3 个答案:

答案 0 :(得分:1)

得到你的答案。

请参阅此小提琴:http://jsfiddle.net/mayurRahul/frpnsnpv/

<强> HTML:

 <tr class="itemSize">
        <td>
          <span class="danger">*</span><label class="itemSize">Product Sizes:</label>
        </td>
        <td>
          <label for="extra_small">XS</label><input type="checkbox" name="extra_small" id="extra_small" value="XS">
          <label for="small">S</label><input type="checkbox" name="small" id="small" value="S">
          <label for="medium">M</label><input type="checkbox" name="medium" id="medium" value="M">
          <label for="large">L</label><input type="checkbox" name="large" id="large" value="L">
         </td>
      </tr>

<强> JavaScript的:

$('#extra_small,#small,#medium, #large, #extra_large').on('change',function(){
    var $sizeTr = $('.itemSize');
    if(this.checked){
      console.log("checked");
      var size = $(this).attr("id");
      var html = 
      '<tr class="'+size+'_quantity">'+
       '<td>'+
          '<span class="danger">*</span><label for="itemQuantity">'+size+' Stock Quantity:</label>'+
        '</td>'+
        '<td>'+
          '<input type="number" min="1" name="itemQuantity" placeholder="Enter Product Quantity" value=""/>'+
        '</td>'+
      '</tr>';
      //$('.itemSize').after(html);
      $(html).insertAfter($sizeTr);
      //console.log( $(html));
    }else{
      $('tr.'+size+'_quantity').hide();
    }
  });

答案 1 :(得分:0)

确保在添加行(see answers from this link)时选择了正确的元素。在表格中添加ID。

<table id="myTable">
    <thead>
        <!-- Table headers -->
    </thead>
    <tbody>
        <!-- Table contents -->
    </tbody>
</table>

$('#myTable > tbody:last').append('<tr>...</tr><tr>...</tr>');

答案 2 :(得分:0)

在最后一行后添加行&#39;

$("#table tr:last").after("<tr><td>cell</td></tr>");