发布于 2016-10-28 10:14:52 | 148 次阅读 | 评论: 0 | 来源: 网友投递
这篇文章主要介绍了jQuery中detach()方法用法,以不同实例形式分析了detach()方法删除匹配元素的技巧,具有一定的参考借鉴价值,需要的朋友可以参考下本文实例讲述了jQuery中detach()方法用法。分享给大家供大家参考。具体分析如下:
此方法从DOM中删除所有匹配的元素。
说明:detach()方法不会把匹配的元素从jQuery对象中删除,因而可以在将来再使用这些匹配的元素,与remove()不同的是,所有绑定的事件、附加的数据等都会保留下来。
语法结构:
$(selector).detach(expr)
参数列表:
实例一:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.phperz.com/" />
<title>phperz</title>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("div").detach("#first");
});
})
</script>
</head>
<body>
<div id="first">欢迎来到phperz</div>
<div>phperz欢迎您</div>
<button>点击查看效果</button>
</body>
</html>
以上代码能够删除div集合中id值为first的div。
实例二:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.phperz.com/" />
<title>phperz</title>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("div").detach();
});
})
</script>
</head>
<body>
<div id="first">欢迎来到phperz</div>
<div>phperz欢迎您</div>
<button>点击查看效果</button>
</body>
</html>
如果方法没有参数,那么将会删除所有匹配元素。
实例三:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.phperz.com/" />
<title>phperz</title>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#btd").click(function(){
var a=$("div");
a.detach("#first");
$("#btn").click(function(){
alert(a.length);
});
});
})
</script>
</head>
<body>
<div id="first">欢迎来到phperz</div>
<div id="second">phperz欢迎您</div>
<button id="btd">删除div效果</button>
<button id="btn">查看删除操作后div的数量</button>
</body>
</html>
以上代码的运行结果可以看出,此方法并没有将div从jquery对象中删除。
希望本文所述对大家的jQuery程序设计有所帮助。