執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The cloneNode() Method</h2> <button onclick="myFunction()">Copy</button> <p>Click "Copy" to copy an item from one list to another.</p> <ul id="myList1"><li>Coffee</li><li>Tea</li></ul> <ul id="myList2"><li>Water</li><li>Milk</li></ul> <p>If you change the <b>deep</b> parameter to false, only an empty LI element will be cloned.</p> <script> function myFunction() { const node = document.getElementById("myList2").lastChild; const clone = node.cloneNode(true); document.getElementById("myList1").appendChild(clone); } </script> </body> </html>