對於更強大的解決方案,使用這段代碼(來自Twitter的源代碼所):
// Avoid `console` errors in browsers that lack a console.
(function() {
var method;
var noop = function() {};
var methods = [
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
'timeStamp', 'trace', 'warn'
];
var length = methods.length;
var console = (window.console = window.console || {});
while (length--) {
method = methods[length];
// Only stub undefined methods.
if (!console[method]) {
console[method] = noop;
}
}
}());
什麼瀏覽器?你也可以生成一個[jsFiddle](http://jsfiddle.net/)來重現它嗎? – Mgetz
@Mgetz。呵呵。如果我使用IE8,它會顯示所有三個(還沒有計算出它在哪裏登錄)。 它在eclipse瀏覽器中運行時不會顯示第三個。 – dwjohnston