码迷,mamicode.com
首页 > Web开发 > 详细

JS添加tr序号

时间:2015-11-02 18:53:03      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

    <script>
        var a = 2;
        var bb=0;
        function add() {           
            a++;
            var newRow = $("#templateTr").html();
            $("#templateTr").find(".spth").html(a);
            $(".aaa").before(newRow);
            $(".numberspan").html((a));
            bb = a + 1;
            $("#templateTrMade").find(".madespth").html(bb);
        }
        function remove() {
            var index = $(".aaa").index();
            if (index > 5) {
                $("table").find("tr").eq(index).remove();
                a--;
                $("#templateTr").find(".spth").html(a);
                $(".numberspan").html((a));
                bb = a + 1;
                $("#templateTrMade").find(".madespth").html(bb);
            }
        }
    </script>

 

JS添加tr序号

标签:

原文地址:http://www.cnblogs.com/happinesshappy/p/4930902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!