JavaScript 中的递归函数

发布于 2024-08-23 02:31:29 字数 492 浏览 4 评论 0原文

也许是一个微不足道的问题,我不知道为什么这个函数在执行 else 语句时会退出 for 循环。 我需要这个函数来获取 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");
}

Maybe is a trivial problem, i don't know why this function exit from for cycle when it goes on else statement.
I need this function to fetch an xml document.

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");
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何其悲哀 2024-08-30 02:31:29

由于 childs 不是局部变量,因此 xmlToArray 的所有调用都作用于相同的数据。

试试这个:

function xmlToArray(element) {
    var childs = element.childNodes;
    // …
}

使用 var 在当前作用域中声明该变量。

Since childs is not a local variable, all calls of xmlToArray work on the same data.

Try this:

function xmlToArray(element) {
    var childs = element.childNodes;
    // …
}

Using var declares that variable in the current scope.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文