我正在尝试调试我的jQuery(工具)脚本,该脚本不能在IE上运行.可以在这里找到一个例子:
http://dl.dropbox.com/u/16799097/www/demo/jQuery_Slider/index.html
它正确加载,第一个(滑动)事件发生,然后没有任何附加.
当我尝试通过使用developer-tools重新加载页面来调试我的脚本时(按下F12键),一切都像魅力一样…如果我无法调试,我该怎么办?
任何帮助将不胜感激,我被困…
解决方法
错误是(在slider.js中):
'console' is undefined
控制台对象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||{});