jQuery detach() 方法用于移除选中的元素,包括所有文本和子节点。

此方法保存已删除元素的副本,以便以后需要时重新插入。

语法

$(selector).detach() 

示例

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script>
$(document).ready(function(){
  $("button").click(function(){
    $("p").detach();
  });
});
</script>
</head>
<body>
<p>yxjc123.com</p>
<p>jQuery detach() 方法例子</p>
<button>点击这里移除所有p元素</button>
</body>
</html>