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

两行及其相似代码的区别

for(var i=0;i<content.childNodes.length;i++)

  {

    content.removeChild(content.childNodes[0]);

  }

  for(var i=content.childNodes.length-1;i>=0;i--)

  { 

    var x=content.removeChild(content.childNodes[0]);


  }


提问者:Interstaller_Wei 2015-11-30 19:49

个回答

  • 一毛钱
    2015-11-30 20:55:49

    一个递增,一个递减,还有一点content.removeChild(content.childNodes[0]); 这块应该是i吧