jquery下简化 console.log 的写法

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 的写法

上一篇:Android从源代码看ListView的重用机制


下一篇:安卓ROM简单定制、打包、签名、换字体