ブラウザはコンソール オブジェクトが見つからないと報告するため、同じインターフェイスを持つコンソール オブジェクトを手動で構築し、ウィンドウに配置します。ここでは空のメソッドと空のオブジェクトが使用されます。このようにすると、非常に古いブラウザでも、console.xxxxx を含むコードはエラーを報告せず、完全に実行されます。
以下に修復互換性コードを添付します。これは最初の console.xxxx 呼び出しの前に配置する必要があります。そうしないと意味がありません。
(function (){
/ /JS エラーを回避するために空のコンソール オブジェクトを作成します
if(!window.console)
window.console = {};
var console = window.console; 🎜>var funcs = ['assert', 'clear', 'count', 'debug', 'dir', 'dirxml',
'error', 'Exception', 'group', 'groupCollapsed', ' groupEnd',
'info', 'log', 'markTimeline', 'profile', 'profileEnd',
'info'、'log'、'markTimeline'、'profile'、'profileEnd'、
'table', 'time', 'timeEnd', 'timeStamp', 'trace', 'warn'];
for(var i=0,l=funcs.length;i var func = funcs[i];
if(!console[func])
console[ func] = function(){};
}
if(!console.memory)
console.memory = {};
})();