Internet Explorer: “console is not defined” Error

前端 未结 9 1619
天涯浪人
天涯浪人 2020-12-05 18:33

I was using console.log() in some JavaScript I wrote and an error of: console is not defined was thrown in Internet Explorer (worked fine in other

9条回答
  •  感动是毒
    2020-12-05 18:49

    How about this? Haven't tried it though

    if (typeof console == "undefined" || typeof console.log == "undefined") var console = { log: function() {} };
    

提交回复
热议问题