如何使用 jQuery 从父节点中移除所有子节点?


使用 jQuery empty() 方法从父节点中移除所有子节点。

示例

你可以尝试运行以下代码以使用 jQuery 从父节点中移除所有子节点

实时演示

<!DOCTYPE html>
<html>
<head>
<style>

</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
      $("#button1").click(function(){
         $("ul").empty();
      });

});
</script>
</head>

<body>
  <div>
    <ul>
      <li>li (child)</li>
      <li>li (child)</li>
      <li>li (child)</li>
      <li>li (child)</li>
    </ul>  
  </div>
  <button id="button1">Remove</button>
  <p>Click Remove to remove all child nodes.</p>
</body>
</html>

更新于: 15-6 月-2020

349 浏览次数

开启你的 职业生涯

完成教程获得认证

开始
广告