2014-02-18 22:46

[jQuery] $.log 與 $.fn.dump

記錄一下,偷懶的 console.log
  1. if ($ && $.fn) { 
  2.    $.log = (window['console'] && typeof(console.log)=='function') ? 
  3.        function () { console.log.apply(console, arguments); } : 
  4.        $.noop; 
  5.  
  6.    $.fn.dump = function (tag) { 
  7.        var args = Array.prototype.slice.call(arguments); 
  8.        args.push(this); 
  9.  
  10.        $.log.apply($, args); 
  11.        return this; 
  12.    } 
  13. } 
  14.  
  15.  
  16. // use 
  17. $.log('ok'); 
  18.  
  19. $('img').dump(); 
  20.  
  21. $('div').dump('my tag'); 

0 回應: