What happened to console.log in IE8?

后端 未结 17 2414
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 04:45

According to this post it was in the beta, but it\'s not in the release?

17条回答
  •  有刺的猬
    2020-11-22 05:36

    if (window.console && 'function' === typeof window.console.log) {
        window.console.log(o);
    }
    

提交回复
热议问题