LoginSignup
3
1

More than 5 years have passed since last update.

古めのIEで利用するWebページで,javascriptのコンソールを利用する場合の注意

Last updated at Posted at 2015-06-30

自分がハマったのでメモ.

IE8, IE9 で開発者ツールを開いていない状態で,javascript の console.log() を使うとエラーが発生する.
Firefox38 はエラーにはならなかった.他のブラウザは不明.

症状

  1. javascriptでエラーが発生
  2. 古いIEで症状が見られる(とりあえずIE8とIE9で確認)
  3. 開発者ツールを開いたら正常に動く

対応

console.log() を使う場合は,

sample.js
 if (window.console) console.log("文字列");

などとすると,このエラーを回避できる.
jQueryのソースではそうやってた.

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1