• JQuery实现表格的增加行和删除行


    利用JQuery实现datatables插件的增加和删除行操作

    在学习过程中遇到了这个利用JQuery对表格行的增加和删除,特记录下来以供初学者参考。

    下面是主要的代码:

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <title>zengjia he shancu </title>
        <meta charset="utf-8" />
        <script src="../jsPanel-3.5.0/jquery-3.1.1.min.js"></script>
        <script src="../DataTables/js/js/jquery.dataTables.min.js"></script>
        <link href="../DataTables/js/css/jquery.dataTables.min.css" rel="stylesheet" />
        <script type="text/javascript">
    
            $(document).ready(function () {
                $("#table").DataTable()
            });
            var i = 0;
            //添加行
            function addRow() {
                i++;
                var rowTem = '<tr class="tr_' + i + '">'
                    + '<td><input type="Text" id="txt' + i + '" /></td>'
                    + '<td><input type="Text" id="pwd' + i + '"/></td>'
                    + '<td><a href="#" onclick=delRow('+i+') >删除</a></td>'
                    + '</tr>';
               //var tableHtml = $("#table tbody").html();
               // tableHtml += rowTem;
                  $("#table tbody:last").append(rowTem);
              //  $("#table tbody").html(tableHtml);
    
            }
            //删除行
            function delRow(_id) {
                $("#table .tr_"+_id).hide();
                i--;
            }
            //进行测试
            function ceshi() {
                var str1 = '';
                for( var j=1;j<=i;j++){
                    var str = $("#" + "txt" + j).val();
                    str1 += str;
                }
                alert(str1);
            }
        </script>
    </head>
    <body>
        <div style="500px">
            <table id="table" border="1" width="500px" class="display  hover cell-border  border-blue-1" >
                <tr width="150px">
                    <th width="70px">用户名</th>
                    <th width="70px">密码</th>
                    <th width="30px">操作</th>
                </tr>
            </table>
        </div>
        <input type="button" value="添加行" onclick="addRow();" />
        <input type="button" value="测试数据" onclick="ceshi();" />
    </body>
    </html>

    运行的截图如下:

  • 相关阅读:
    php max()函数 语法
    php min()函数 语法
    php mt_rand()函数 语法
    php rand()函数 语法
    php pi()函数 语法
    php trim()函数 语法
    php chop()函数 语法
    php rtrim()函数 语法
    php ltrim()函数 语法
    php is_file()函数 语法
  • 原文地址:https://www.cnblogs.com/dongteng/p/6255052.html
Copyright © 2020-2023  润新知