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]);
}
有啥区别呢 结果运行不一样
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
举报