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

insertBefore , previousSibling

我下面代码输出不是应该是在HTML前插入php?

哪里错了?

把ot,otest.childNodes[2].previousSibling 换成ot,otest.childNodes[1].previousSibling

输出就是正确的

<!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 id="id1">HTML</li></ul>

<script type="text/javascript">

  var otest = document.getElementById("test");  

  var ote = document.getElementById("id1");

  var ot = document.createElement("li");

  ot.innerHTML ="php";

  otest.insertBefore(ot,otest.childNodes[2].previousSibling);

</script> 

</body>

</html>


正在回答

1 回答

你自己不是找到错了吗,otest.childNodes[2]是指第三个child啊,下标从0开始的

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

灬诺诺 提问者

非常感谢!
2016-09-28 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

insertBefore , previousSibling

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