使用示例讲解 jQuery detach()


jQuery 中的 detach() 方法用于移除选定的元素。

语法

语法如下 −

$(selector).detach()

示例

现在我们来看一个实现 jQuery detach() 方法 的示例 −

 实时演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
   $(document).ready(function(){
      $("button").click(function(){
         $("span").detach();
      });
   });
</script>
<style>
span {
   background-color: red;
   color: white;
}
</style>
</head>
<body>
<h2>Demo Heading</h2>
<p>This is a <span>demo</span> text.</p>
<button>Remove element</button>
</body>
</html>

输出

这将会产生以下输出 −

点击“移除元素” −

更新于:31-Dec-2019

164 次浏览

开启你的 职业生涯

通过学习课程获得认证

开始学习
广告