通过检测nodeType是不是element node
for(var i=0;i<len;i++){
if(x.childNodes[i].nodeType==1){
document.write("div的第一个子节点:"+x.firstChild+"<br>"); break;
}
}
if(x.childNodes[i].nodeType==1)中的nodeType总会报错啊
for(var i=0;i<len;i++){
if(x.childNodes[i].nodeType==1){
document.write("div的第一个子节点:"+x.firstChild+"<br>"); break;
}
}
if(x.childNodes[i].nodeType==1)中的nodeType总会报错啊
2017-09-22
举报