为什么打印不出来节点的信息?
为什么打印不出来节点信息呢?
var x=document.getElementById("con").childNodes;
document.write(x.length+"<br>");
document.write(x.firstChild.nodeName+"<br />");
document.write(x.firstChild.nodeType+"<br />");
document.write(x.firstChild.nodeValue+"<br />");