问答详情
源自:9-14 删除节点removeChild()

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

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]);

提问者:雨巷_100 2015-07-13 17:45

个回答

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

    oooooooooo