也许是一个微不足道的问题,我不知道为什么这个函数在进入else语句时退出循环。 我需要这个函数来获取一个xml文档。
function xmlToArray(element){
childs= element.childNodes;
if(childs.length != 1){
for(var i=0;i<childs.length;i++){
if(childs[i].hasChildNodes()){
xmlToArray(childs[i]);
}
alert("exit from if");
}//end for
alert("exit from for");
}//end if
else{
alert("do something with element");
}
alert("end of func");
}
答案 0 :(得分:8)
由于childs
不是本地变量,因此xmlToArray
的所有调用都会处理相同的数据。
试试这个:
function xmlToArray(element) {
var childs = element.childNodes;
// …
}
使用var
在当前范围内声明该变量。