1
var newnode = document.createElement("nodeName");
注意:1.此处创建的新节点是节点对象
2.创建的新节点存在于内存中,并不会显示在页面中
3...