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

if语句不是循环吧?干嘛用continue

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

      if(content.childNodes[i].nodeType!=1){   

         continue;  

      }else{

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

      }

         

      }


提问者:慕运维0124838 2015-09-23 13:23

个回答

  • 正在输入_0001
    2015-09-24 11:08:41
    已采纳

    continue就是跳出本次循环,接着进行下一次循环。

  • Y_du
    2015-09-23 13:29:54

    提示作用