IE8中console.log发生了什么?

它是在beta中,但不是在发布中?

回答:

对于后备甚至更好的是:

   var alertFallback = true;

if (typeof console === "undefined" || typeof console.log === "undefined") {

console = {};

if (alertFallback) {

console.log = function(msg) {

alert(msg);

};

} else {

console.log = function() {};

}

}

以上是 IE8中console.log发生了什么? 的全部内容, 来源链接: utcz.com/qa/398983.html

回到顶部