fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <ul id="myList1"><li>Coffee</li><li>Tea</li></ul> <ul id="myList2"><li>Water</li><li>Milk</li></ul> <p id="demo">单击按钮将项目从一个列表复制到另一个列表中</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var itm=document.getElementById("myList2").lastChild; var cln=itm.cloneNode(true); document.getElementById("myList1").appendChild(cln); } </script> <p>尝试更改<em>deep</em>参数为假,只有一个空的li元素将被克隆</p> </body> </html>
运行结果