为了账号安全,请及时绑定邮箱和手机立即绑定

求问下面的代码哪里错了,为什么不能把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>


正在回答

2 回答

childNotes改为childNodes

0 回复 有任何疑惑可以回复我~

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

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

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

     }

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信