1. ホーム
  2. ジャバスクリプト

[解決済み】IE8でconsole.logはどうなったのでしょうか?

2022-04-07 12:23:12

質問

によると この記事 はベータ版にはあったのに、リリースにはないのですか?

解決方法は?

フォールバックのためにさらに良いのは、これです。


   var alertFallback = true;
   if (typeof console === "undefined" || typeof console.log === "undefined") {
     console = {};
     if (alertFallback) {
         console.log = function(msg) {
              alert(msg);
         };
     } else {
         console.log = function() {};
     }
   }