码迷,mamicode.com
首页 > Web开发 > 详细

jquery下简化 console.log 的写法

时间:2014-06-15 23:43:13      阅读:410      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   cti   

window.ll = function f() {
    ll.history = ll.history || [];
    ll.history.push(arguments);
    if (this.console) {
        var a = arguments, c;
        try {
            a.callee = f.caller;
        } catch (b) {}
        c = [].slice.call(a);
        if (typeof console.log === "object") {
            log.apply.call(console.log, console, c);
        } else {
            console.log.apply(console, c);
        }
    }
};

 

jquery下简化 console.log 的写法

 

jquery下简化 console.log 的写法,布布扣,bubuko.com

jquery下简化 console.log 的写法

标签:style   class   blog   code   color   cti   

原文地址:http://www.cnblogs.com/jozhi88/p/3785207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!