for 函数中 content.removeChild(content.childNodes[0]); 为什么不是 content.removeChild(content.childNodes[i]);

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

雨巷_100

2015-07-13 17:45

function clearText() {
  var content=document.getElementById("content");
  var nole=content.childNodes.length;
  for(var i=0;i<nole;i++)
  {
      content.removeChild(content.childNodes[0]);   //问题

  }
  // 在此完成该函数
 }


为什么是 content.removeChild(content.childNodes[0]);而不是 content.r

emoveChild(content.childNodes[i]);

写回答 关注

1回答

  • 诡异死亡
    2015-12-25 09:57:27

    oooooooooo

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题