jQuery到Firebug日志

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery到Firebug日志相关的知识,希望对你有一定的参考价值。

A simple but powerful interface for allowing firebug access functions in the jQuery chain.

See the link above to check out the functions it accepts.
  1. $.enableConsole = false;
  2. $.fn.console = $.console = function(method){
  3. if (window.console && console[method] && $.enableConsole)
  4. console[method].apply(this, [].splice.call(arguments,1))
  5. return this;
  6. }
  7.  
  8. // When debugging code, be sure to set:
  9. $.enableConsole = true; // Or none of your lines will reach the console
  10.  
  11. // You can call any firebug functions through either the direct jQuery object, or in a chain:
  12. $.console('debug', 'This is some %s text', 'debugging');
  13.  
  14. // The best part is the ability to use the firebug console chain easily:
  15. var color = '#FFF';
  16. $('#someElement').css('backgroundColor', color).console('log', 'Changing the background color to "%s"', color);
  17.  
  18. // And the access to the other functions of the firebug console, like time/timeEnd
  19. $('#someElement').console('time', 'timing foo').animate({...}).console('timeEnd', 'timing foo');

以上是关于jQuery到Firebug日志的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript jquery firebug日志

在 firebug 中发现 JQuery 语法错误,但在我的代码中没有

使用Firebug用jQuery代码修改打印页的DOM元素

将 Firebug Lite 添加到 JSFiddle 以最小化启动

在 firebug 中看不到 socket.io 请求日志

使用JQuery&Firebug列出JQuery函数