如何使用 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+ 浏览量

开启你的职业生涯

完成课程以获得认证

开始
广告