如何在 JavaScript 中刪除 DOM 節點的全部子元素?


若要刪除子元素,請將 innerHTML 設為“”

示例

下面是程式碼 −

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Document</title>
</head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<body>
<div id='removeAllChildElements' style="height: 200px; width: 200px; border: 1px solid red;">
<span>Javascript</span>
<div>MySQL</div>
</div>
<button id='remove'>Remove the items</button>
</body>
<script>
   remove.onclick = () => {
      const element = document.getElementById("removeAllChildElements");
      element.innerHTML = '';
   }
</script>
</html>

若要執行上述程式,請將檔名儲存為 anyName.html(index.html)。右鍵單擊該檔案,然後在 VS Code 編輯器中選擇“使用即時伺服器開啟”選項。

輸出

這將產生以下輸出 −

現在你可以單擊“刪除項”按鈕。它將刪除框內所有元素。

輸出

這將產生以下輸出 −

更新於: 27-Oct-2020

228 次瀏覽

開啟你的 事業

完成此課程獲取認證

開始行動
廣告
© . All rights reserved.