如何使用Jquery在HTML表中添加行?

时间:2017-02-02 06:15:06

标签: javascript jquery html asp.net

我想使用Jquery在运行时动态添加行。在开始表没有任何记录。当用户单击ADD Button时,必须添加行。 Watch this picture

当用户点击添加按钮时,操作员下拉列表框值和过滤器值应添加到该表行中。

这是我尝试过的 Jquery CODE

$("#btnAdd").click(function () {

   // $("#queryTable tr:last").after("<tr>...</tr><tr>...</tr>");
    $('#queryTable > tbody:last-child').append('<tr>Record1</tr><tr>Record2</tr>');
});

我尝试过这两行。但它没有任何意义。 感谢

HTML代码

 <table class="table table-hover " id="queryTable">
     <thead>
         <tr>
             <th>Field Name</th>
             <th>Values</th>
         </tr>
     </thead>
     <tbody>
         <tr>
             <td>Mark</td>  //Please ignore these two records. At beginning the table will be empty
             <td>Otto</td>
         </tr>
         <tr>
             <td>Jacob</td>
             <td>Thornton</td>
         </tr>
     </tbody>
 </table>

3 个答案:

答案 0 :(得分:4)

添加HTML元素的正确jQuery代码是:

$('#queryTable tbody').append('<tr><td>Record1</td><td>Record2</td></tr>');

答案 1 :(得分:3)

您的输入字符串HTML不正确。截至目前,您没有TD元素,因此不显示内容。但是它附加并存在于DOM

'<tr><td>Record1</td><td>Record2</td></tr>

而不是

'<tr>Record1</tr><tr>Record2</tr>'

&#13;
&#13;
$('#queryTable > tbody:last-child').append('<tr><td>Record1</td><td>Record2</td></tr>');
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<table class="table table-hover" id="queryTable">
  <thead>
    <tr>
      <th>Field Name</th>
      <th>Values</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Mark</td>
      <td>Otto</td>
    </tr>
    <tr>
      <td>Jacob</td>
      <td>Thornton</td>
    </tr>
  </tbody>
</table>
&#13;
&#13;
&#13;

答案 2 :(得分:0)

<!DOCTYPE html>
<html>
<head>

<title>Add Rows Dynamically</title>

<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $(".add").click(function(){
            var name = $("#name").val();
            var lastname = $("#lastname").val();
            var markup = "<tr><td>" + name + "</td><td>" + lastname + "</td></tr>";
            $("table tbody").append(markup);
        });


    });    
</script>
</head>
<body>

        <input type="text" id="name" placeholder="Name">
        <input type="text" id="lastname" placeholder="Last Name">
        <input type="button" class="add" value="Add">

    <table style="border: 1px solid black;">
        <thead>
            <tr>

                <th>Name</th>
                <th>Last Name</th>
            </tr>
        </thead>
        <tbody>

        </tbody>
    </table>

</body> 
</html>    

它可能对你有所帮助。