取代 DOM 中的元素可能是 Web 開發中的常見任務。例如,您可能想要將 替換為帶有 的元素元素。這可以使用多種方法來實現,但最直接、最可靠的方法是利用replaceChild()函數。
使用replaceChild():
replaceChild( ) 函數可讓您以新的 DOM 元素取代現有的 DOM 元素。它需要兩個參數:要插入的新元素和要替換的元素。
<code class="javascript">// Get the element you want to replace var elementToReplace = document.getElementById("myAnchor"); // Create the new element var newElement = document.createElement("span"); newElement.innerHTML = "replaced anchor!"; // Replace the old element with the new one elementToReplace.parentNode.replaceChild(newElement, elementToReplace);</code>
此程式碼片段將會取代 。帶有 的元素(ID 為「myAnchor」)文字內容為「已替換錨點!」的元素。新元素將插入 DOM 樹中與原始元素相同的位置。
透過使用 ReplaceChild() 函數,您可以有效率且動態地修改網頁標記的結構,而無需重新載入整個頁面文件。
以上是如何用 JavaScript 取代 DOM 元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!