4

非常に奇妙な問題があります。IE 10 で Web アプリケーションをデバッグ (F12) しようとしました。コンソールをオフにすると、問題が発生します。コンソールの電源を一度オン (オフ) にするとすぐに、問題は解消されます。

コンソールは、レンダリング エンジンまたは DOM ツリーで何を変更しますか? コンソールを自動的に有効にする方法はありますか?

コンソールなし: スクリーンショット

コンソールを使用 (数秒間オン): スクリーンショット

私の側から詳細を知りたい場合はお知らせください。

4

1 に答える 1

5

Often times this is the result of an unchecked console.log in your script. Confirm that code writing to the console is preceded by a check to see if window.console exists.

var someVar = 1234;

//Fatal JS error, when devtools are closed:
console.log(someVar);

//Safely checked!
if (window.console) console.log(someVar);
于 2013-08-28T06:44:44.877 に答える