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

jQuery Clone方法

时间:2019-11-01 18:17:15      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:jquer   charset   self   child   func   htm   put   input   onclick   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>


<div id="outer">
<div class="item">
<input type="button" value="+" onclick="fun1(this)">
<input type="text">
</div>
<div class="item">
<input type="button" value="-" onclick="fun1(this)">
<input type="text">
</div>


</div>

 

<script src="jquery-3.1.1.js"></script>
<script>
function fun1(self) {
var Clone=$(self).parent().clone();
//Clone.children(":button").val("-").attr("onclick","func2(this)");

$("#outer").append(Clone)
}

function func2(self) {
alert(123)
$(self).parent().remove()
}


</script>
</body>
</html>

jQuery Clone方法

标签:jquer   charset   self   child   func   htm   put   input   onclick   

原文地址:https://www.cnblogs.com/gerenboke/p/11778240.html

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