运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 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>