如何使用 jQuery 中的元素 ID 从 DOM 中删除所有元素?


要使用元素 ID 从 DOM 中删除所有元素,请使用 remove() 方法。

实例

你可以尝试运行以下代码以使用元素 ID 从 DOM 中删除所有元素

演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
   $("button").click(function(){
      $("#mydiv").remove();
   });
});
</script>
</head>
<body>
<button>Click to remove all elements</button><br>
<div id="mydiv" style="height:200px;width:350px;border:2px solid red;background-color:blue;">

<p>This is some text.</p>

<span>This is demo text.</span>
</div>

</body>
</html>

更新于: 2019-12-17

1K+ 浏览

开启你的职业生涯

完成课程即可获得认证

立即开始
广告