当我尝试在 jQuery 中修改 DOM 时,代码停止工作

发布于 2024-12-12 19:50:09 字数 685 浏览 0 评论 0原文

我正在尝试修改 DOM 元素,但由于某种原因代码被卡住了。

 var length = tabOne.length;
    for(var i = 0; i < length; i++) {
        if(tabOne[i] == sPage){ 
            alert("In Tab One");

            // Set the top nav link as current (Get the first link in #nav-main)
            $("#nav-main a:first").addClass("current");         
            // Set the sub nav link as current (Find it by URL)
            $("a[href='" + sPage + "']").addClass("current");
            // Show the sub nav
            $("#nav-sub-welcome").css('display', '');

            alert("We got this far");
        }
    }

该脚本永远不会在最后显示警报。我尝试注释掉特定的操作,但由于某种原因,除非将它们全部注释掉,否则警报不会运行。任何帮助表示赞赏!

I am trying to modify DOM elements but for some reason the code gets jammed up.

 var length = tabOne.length;
    for(var i = 0; i < length; i++) {
        if(tabOne[i] == sPage){ 
            alert("In Tab One");

            // Set the top nav link as current (Get the first link in #nav-main)
            $("#nav-main a:first").addClass("current");         
            // Set the sub nav link as current (Find it by URL)
            $("a[href='" + sPage + "']").addClass("current");
            // Show the sub nav
            $("#nav-sub-welcome").css('display', '');

            alert("We got this far");
        }
    }

The script never displays the alert at the end. I tried commenting out specific manipulations but for some reason the alert wont run unless they are all commented out. Any help is appreciated!!

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

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

发布评论

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

评论(1

塔塔猫 2024-12-19 19:50:09

问题是使用此代码的页面也在加载原型,并且它们发生冲突。 阅读本文以了解如何避免冲突

The problem was that the page this code was being used on was also loading prototype, and they conflicted. Read this to learn how to avoid conflicts.

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