jQuery 脚本仅在 ie8/9 开发者工具下工作

发布于 2024-11-24 10:01:03 字数 354 浏览 1 评论 0原文

我正在尝试调试无法在 IE 上运行的 jQuery(Tools) 脚本。可以在此处找到示例:

http://dl.dropbox.com/u/16799097 /www/demo/jQuery_Slider/index.html

它加载正确,第一个(滑动)事件发生,然后没有任何附加。

当我尝试通过使用开发人员工具重新加载页面(按 F12 键)来调试我的脚本时,一切都像魅力一样工作......如果我无法调试,我该怎么办?

任何帮助将不胜感激,我被困住了......

I am trying to debug my jQuery(Tools) script that is not working on IE. An example can be found here:

http://dl.dropbox.com/u/16799097/www/demo/jQuery_Slider/index.html

It loads correctly, the first (sliding) event occurs, and then nothing append.

When I try to debug my script by reloading the page with the developer-tools (press the F12 key), everything works like a charm ... What can I do if I cannot debug ?

Any help would be appreciated, I am stuck ...

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

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

发布评论

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

评论(1

不交电费瞎发啥光 2024-12-01 10:01:03

错误是(在 slider.js 中):

'console' is undefined

console 对象 仅在打开开发者工具时在 IE 中定义。然后,JavaScript 错误就不再存在,一切正常。

要解决此问题,您可以删除/注释掉 console.log 调用,或者添加类似的内容作为您的第一个 JavaScript 块:(

// make it safe to use console.log always
(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info, log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","),a;a=d.pop();)b[a]=b[a]||c})(window.console=window.console||{});

摘自 http://html5boilerplate.com/)

The error is (in slider.js):

'console' is undefined

The console object is only defined in IE when you open the Developer Tools. Then, there's no longer a JavaScript error and everything works.

To fix the problem, you can either remove/comment out the console.log call, or add something like this as your very first block of JavaScript:

// make it safe to use console.log always
(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info, log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","),a;a=d.pop();)b[a]=b[a]||c})(window.console=window.console||{});

(snippet taken from http://html5boilerplate.com/)

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