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

为什么就显示了一个PHP?????

<!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 m=document.getElementsByTagName("div")[0].childNodes;

 for(i=0;i<=m.length;i++){

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

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

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

     document.write("<br>");

 

</script>

</body>

</html>


提问者:慕斯3035540 2016-07-27 09:07

个回答

  • 水里有条鱼
    2016-07-27 10:27:10
    已采纳

    ?,就显示一个php是什么意思?我把代码拿去运行了一下,div里的都能显示出来,如果说哪里错的话,for()要加上"}",缺了一个"}"

     for(i=0;i<=m.length;i++){

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

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

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

         document.write("<br>");

     }  <-这里


  • 旋风凯蒂
    2016-07-27 11:00:32

    有可能是浏览器兼容的问题,试了下代码没问题