这个函数顺序和倒序怎么表现结果不同

来源:9-14 删除节点removeChild()

bookmark

2016-08-28 20:54

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

<body>
<div id="content">
  <h1>html</h1>
  <h1>php</h1>
  <h1>javascript</h1>
  <h1>jquery</h1>
  <h1>java</h1>
</div>

<script type="text/javascript">
function clearText() {
  var content=document.getElementById("content");
  // 在此完成该函数
    for(var i=0;i<content.childNodes.length;i++){
    var x=content.removeChild(content.childNodes[i]);
    }
}
</script>

<button onclick="clearText()">清除节点内容</button>


</body>
</html>

这是顺序的代码,表现是点击按钮,第一下没反应,第二下删除只剩下php和jquery,第三下只剩jquery,第四下,全删除但是如果把for(var i=0;i<content.childNodes.length;i++)改成 for(var i=content.childNodes.length-1;i>=0;i--),则是点击一下就可以完成所有节点删除。请问中间有什么区别

写回答 关注

1回答

  • qq_无朋孤_0
    2016-08-28 23:30:02

     一个从左向右,一个从右向左

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题