标签:
创建新的 HTML 元素
如需向 HTML DOM 添加新元素,您必须首先创建该元素(元素节点),然后向一个已存在的元素追加该元素。
实例1:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <div class="wrap" id="a"> <input type="button"value="测试" onclick="myf()"/> </div> <script type="text/javascript"> function myf(){ document.getElementById("a").appendChild(document.createElement("input"))//向已知元素节点a添加子元素input } </script> </body> </html>
标签:
原文地址:http://www.cnblogs.com/flyings/p/5115616.html