调试代码导致IE出错的避免方法
内容摘要
复制代码 代码如下: if(!window.console){ var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml","group", "groupEnd", "time", &quo
文章正文
复制代码 代码如下:
if(!window.console){
var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml","group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
window.console = {};
for (var i = 0; i < names.length; i++){
window.console[names[i]] = function() {};
}
}
可以放在基础库里面,当然,注意names和i的作用域~
代码注释