jQuery脚本只能在ie8 / 9开发人员工具下工作

时间:2011-07-15 21:54:36

标签: jquery ie-developer-tools

我正在尝试调试不能在IE上运行的jQuery(工具)脚本。可以在这里找到一个例子:

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

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

当我尝试通过使用developer-tools重新加载页面来调试我的脚本时(按下F12键),一切都像魅力一样......如果我无法调试,我该怎么办?

任何帮助都会受到赞赏,我被困住了......

1 个答案:

答案 0 :(得分:12)

错误是(在slider.js中):

'console' is undefined

console对象is only defined in IE when you open the Developer Tools。然后,不再出现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/