某些错误可以通过onerror事件获得 console.xxx可以通过重写方法获得: if (console) { var _console = { log : console.log, ... }; console.log = function() { // 做自己的处理 ... // 调用原方法输出 _console.log.apply(this, Array.prototype.slice.call(arguments, 0)); }; // warn、debug、error同理 }
某些错误可以通过onerror事件获得
console.xxx可以通过重写方法获得: