雨的印记印记
2015-09-24 09:13
谁能帮忙解答下为什么这样不行啊?谢谢
var fath=document.getElementsByTagName("div");
var newnode=document.createElement("p");
newnode.innerHTML="我是替换内容";
fath.appendChild(newnode);
嗯嗯,是的,谢谢你~
document.getElementsByTagName("div")取到的是个数组,就算你只有一个div,所以你不能直接用fath.appendChild,因为数组没有这个方法。你可以这样fath[0].appendChild
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题