欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery中detach()方法用法实例教程

程序员文章站 2023-11-21 22:23:34
本文实例讲述了jquery中detach()方法用法。分享给大家供大家参考。具体分析如下: 此方法从dom中删除所有匹配的元素。 说明:detach()方法不会把匹配的元素从j...

本文实例讲述了jquery中detach()方法用法。分享给大家供大家参考。具体分析如下:

此方法从dom中删除所有匹配的元素。

说明:detach()方法不会把匹配的元素从jquery对象中删除,因而可以在将来再使用这些匹配的元素,与remove()不同的是,所有绑定的事件、附加的数据等都会保留下来。

语法结构:

代码如下:

$(selector).detach(expr)

 

参数列表:

参数 描述
expr 可选。用于筛选被删除元素的jquery表达式。
实例代码:

 

实例一:

 

代码如下:


<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="https://www.cnblogs.com/" />
<title>博客园</title>
<script type="text/javascript" src="mytest/jquery/jquery-1.8.3.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){
  $("button").click(function(){
    $("p").detach("#first");
  });
})
</script> 
</head>
<body>
  <p id="first">欢迎来到博客园</p>
  <p>博客园欢迎您</p>
  <button>点击查看效果</button>
</body>
</html>

 

以上代码能够删除p集合中id值为first的p。

实例二:

 

代码如下:


<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="https://www.cnblogs.com/" />
<title>博客园</title>
<script type="text/javascript" src="mytest/jquery/jquery-1.8.3.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){
  $("button").click(function(){
    $("p").detach();
  });
})
</script>
</head>
<body>
<p id="first">欢迎来到博客园</p>
<p>博客园欢迎您</p>
<button>点击查看效果</button>
</body>
</html>

 

如果方法没有参数,那么将会删除所有匹配元素。

实例三:

 

代码如下:


<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="https://www.cnblogs.com/" />
<title>博客园</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=$("p");
    a.detach("#first");
    $("#btn").click(function(){
      alert(a.length);
  nbsp;  });
  });
})
</script> 
</head>
<body>
  <p id="first">欢迎来到博客园</p>
  <p id="second">博客园欢迎您</p>
  <button id="btd">删除p效果</button>
  <button id="btn">查看删除操作后p的数量</button>
</body>
</html>

以上代码的运行结果可以看出,此方法并没有将p从jquery对象中删除。