document.body.为什么不是直接用body.appendChild(test1);
我理解的,body是标签,不是对象,
代码:document.body.appendChild(test1);
可以改写为: var c = document.getElementsByTagName("body");//获取body标签
c[0].appendChild(test1);//将p标签插入body中
不知道解释的对不对
没有document就不显示了吧