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

if 语句 的执行问题

if(content.childNodes[i].nodeType=1){
content.removeChild(content.childNodes[i]); 
}


if(content.childNodes[i].nodeType!=1)
{continue;}
else{
content.removeChild(content.childNodes[i]); 
}

有啥区别呢 结果运行不一样


提问者:始终上路过 2016-10-17 19:44

个回答

  • Kian_
    2016-10-18 13:55:47
    已采纳

    判断的时候if里面等号应该是==或是===

    =是赋值吧 !=确实是不等的意思。

  • Kian_
    2016-10-18 13:29:13

    <br/>

    第二个中的if里面应该是continue吧

    <br/>