1. 创建一个新的节点: document.createElement()
2. 插入新创建出来的节点: Node.prototype.appendChild()
var p = document.createElement("p"); p.innerText = "helloWorld"; document.body.appendChild(p);
1. 创建一个新的节点: document.createElement()
2. 插入新创建出来的节点: Node.prototype.appendChild()
var p = document.createElement("p"); p.innerText = "helloWorld"; document.body.appendChild(p);