如何在 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 編輯器中選擇“使用即時伺服器開啟”選項。
輸出
這將產生以下輸出 −

現在你可以單擊“刪除項”按鈕。它將刪除框內所有元素。
輸出
這將產生以下輸出 −

廣告
資料結構
網路
關係型資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP