jQuery script only working under ie8/9 developer tools

前端 未结 1 838
隐瞒了意图╮
隐瞒了意图╮ 2020-12-31 18:33

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.h

相关标签:
1条回答
  • 2020-12-31 18:48

    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/)

    0 讨论(0)
提交回复
热议问题