运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The appendChild() Method</h2> <ul id="myList1"> <li>Coffee</li> <li>Tea</li> </ul> <ul id="myList2"> <li>Water</li> <li>Milk</li> </ul> <p>Click "Move" to move an item from one list to another:</p> <button onclick="myFunction()">Move</button> <script> function myFunction() { const node = document.getElementById("myList2").lastElementChild; document.getElementById("myList1").appendChild(node); } </script> </body> </html>