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

Jquery 实现动态添加输入框&编号

时间:2019-03-15 19:23:55      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:query   info   text   3.3   tle   输入   put   效果图   rem   

输入框动态增加和删除并重新编号:

代码附上:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>添加元素</title>
    <script src="jquery-3.3.1.js"></script>
    <script>
        var i = 1;
        $(function () {
            $("#box").on(‘click‘,‘.addp‘,function () {
                //$(‘#pp‘).after($("#pp").clone());
                var addP = $(this).parent().clone();
                $(this).parent().after(addP);
                $(‘#pp a‘).each(function (i,e) {
                    $(e).text(i+1);
                })
            });
            $("#box").on("click",‘.delp‘,function () {
                $(this).parent().remove();
                $(‘#pp a‘).each(function (i,e) {
                    $(e).text(i+1);
                })
            })
        });

    </script>
</head>
<body>
<div id="box"><p id="pp"><a>1</a><input type="text" name="gx"><button class=‘addp‘>+</button><button class=‘delp‘>-</button></p></div>
</body>
</html>

  效果图:

技术图片

 

Jquery 实现动态添加输入框&编号

标签:query   info   text   3.3   tle   输入   put   效果图   rem   

原文地址:https://www.cnblogs.com/pyghost/p/10538575.html

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