问答详情
源自:9-9 访问子节点的第一和最后项

为什么打印不出来节点的信息?

为什么打印不出来节点信息呢?

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 />");


提问者:慕粉3688263 2016-08-13 17:29

个回答

  • Caterpillar_虫子
    2016-08-13 18:19:28
    已采纳

    把你第一行最后的childNodes去掉

  • kula小个子
    2016-08-13 18:30:25

    var x=document.getElementById("con");

      document.write(x.length+"<br>");

      document.write(x.firstChild.nodeName+"<br />");

      document.write(x.firstChild.nodeType+"<br />");

      document.write(x.firstChild.nodeValue+"<br />");

    这样应该就可以了。