问答详情
源自:9-13 插入节点insertBefore()

求问下面的代码哪里错了,为什么不能把PHP插到HTML前面

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>
<body>

<ul id="test"><li>JavaScript</li><li>HTML</li></ul> 
 
<script type="text/javascript">

  var otest = document.getElementById("test");  
  var newNode = document.createElement("li");
  newNode.innerHTML ="PHP";
  for(var i=0;i<otest.childNotes.length;i++){
      if(otest.childNotes[i].innerHTML=="HTML"){
          otest.insertBefore(newNode,otest.childNodes[i]);
     }
}
  
  
  
</script> 

</body>
</html>


提问者:连枝 2016-10-27 15:18

个回答

  • qq_风向北吹_04068766
    2016-10-28 08:37:17

    childNotes改为childNodes

  • 月洒枫林
    2016-10-27 17:11:37

     for(var i=0;i<otest.childNotes.length;i++){

          if(otest.childNotes[i].innerHTML=="HTML"){

              otest.insertBefore(newNode,otest.childNodes[i]);

         }

    这里面有两处拼写错误,应该是childNodes而不是childNotes