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

jquery的clon

时间:2020-05-17 13:21:41      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:col   doctype   ext   query   NPU   body   attr   type   his   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="jquery-3.1.1.js"></script>
</head>
<body>
<div id="tianjiaclon">
    <div id="ddddd">
        <input type="button" value="+" onclick="f(this)">
        <input type="text">
    </div>
</div>
</body>
    <script>
        function f(self) {
            var s = $(self).parent().clone(); //获取到this的点击事件后,返回父标签,进行clon

            //把clon出来的标签的"+"号变为"-"号
            s.children(":button").val("-").attr("onclick","f1(this)");

            $("#tianjiaclon").append(s);  //把clon的信息添加到,最外层的div标签中



        }

        function f1(self) {
               //点击"-"号把clon当前对象删除
            $(self).parent().remove();
        }

    </script>
</html>

 

jquery的clon

标签:col   doctype   ext   query   NPU   body   attr   type   his   

原文地址:https://www.cnblogs.com/TKOPython/p/12904780.html

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