为什么要判断节点是否为元素节点
for(var i=0;i<content.childNodes.length;i++){
if(content.childNodes[i].nodeType!=1){
continue;
}else{
content.removeChild(content.childNodes[i]);
}
if(content.childNodes[i].nodeType!=1){ 这节要求删除所有节点,那不是要把文本节点一起删掉么,为什么还要判断呢
for(var i=0;i<content.childNodes.length;i++){
if(content.childNodes[i].nodeType!=1){
continue;
}else{
content.removeChild(content.childNodes[i]);
}
if(content.childNodes[i].nodeType!=1){ 这节要求删除所有节点,那不是要把文本节点一起删掉么,为什么还要判断呢
2018-08-09
举报