jQuery UI 选项卡,加载时抛出错误

发布于 2024-08-02 23:08:28 字数 346 浏览 4 评论 0原文

嘿,我正在开发一个新网站,主页上的主要组件之一是使用 jQuery UI 选项卡。然而,由于某种原因,当我在 Firebug 中打开“中断所有错误”时,它会抛出错误。

我不确定到底出了什么问题,从我看来它应该按预期工作。这是相关页面的链接,预先感谢您的任何建议或解决方案。

http://www.alleninsurance.ca/home/

Hey I am working on a new site build, and one of the main components on the homepage is using jQuery UI Tabs. However for some reason when I have "break on all errors" turned on in firebug, it is throwing an error.

I am not sure exactly what is wrong, from what I can see it should work as intended. Here is a link to the page in question, thanks in advance for any suggestions or solutions.

http://www.alleninsurance.ca/home/

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

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

发布评论

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

评论(1

万人眼中万个我 2024-08-09 23:08:28

它被包装在 try catch 语句中(如下),因此当所有错误的中断关闭时,它通常会默默地失败。

我不喜欢他们所做的,因为他们可以轻松地使用 if 语句而不是 try catch,但我想它适合更小的文件大小。

try{g.ajaxOptions.success(i,h)}catch(j){}

It is wrapped in a try catch statement (below) so it normally silently fails when break on all errors is off.

I dont like what they have done as they could easily use an if statement rather than the try catch but I guess it lends itself to smaller file size.

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