为什么和答案一样,就不显示呢
var body=document.body;
var p=document.createElement("p");
p.className="message";
var pt=document.createTextNode("I love JavaScript!");
p.appendChild("pt");
body.appendChild("p");
var body=document.body;
var p=document.createElement("p");
p.className="message";
var pt=document.createTextNode("I love JavaScript!");
p.appendChild("pt");
body.appendChild("p");
2016-06-23
举报