问答详情
源自:9-8 访问子节点childNodes

为啥结果全是undefined?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>无标题文档</title>

</head>

<body>

<div>

  javascript  

  <p>javascript</p>

  <div>jQuery</div>

  <h5>PHP</h5>

</div>

<script type="text/javascript">

 var sc=document.getElementsByTagName("div")[0].childNodes;

 for(var i=0;i<sc.length;i++)

 {

     document.write(sc[i].Name+"<br/>");

     document.write(sc[i].Value+"<br/>");

     document.write(sc[i].Type+"<br/>");

 }

 

</script>

</body>

</html>


提问者:夜信 2018-08-13 11:29

个回答

  • mukewzh
    2018-08-13 16:21:18
    已采纳

    name value你都没有在标签里写啊?第三个是nodeType,不是type

  • 慕田峪1859085
    2018-08-23 20:18:14

    document.write(sc[i].nodeName+"<br/>");

    document.write(sc[i].nodeValue+"<br/>");

    document.write(sc[i].nodeType+"<br/>");