Does IE9 support console.log, and is it a real function?

后端 未结 7 903
醉话见心
醉话见心 2020-11-22 06:16

In which circumstances is window.console.log defined in Internet Explorer 9?

Even when window.console.log is defined, window.console.

7条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-22 06:33

    How about...

    console = { log : function(text) { alert(text); } }
    

提交回复
热议问题