首页 > PHP资讯 > HTML5培训技术 > javascriptconsole对象的兼容性解决方案

javascriptconsole对象的兼容性解决方案

HTML5培训技术
/** *  * @authors Benjamin(http://blog.csdn.net/cuew1987) */(function (win){  	//重置为空函数,避免JS报错  	var 	console = win.console || {},	fns = ['assert', 'clear', 'count', 'debug', 'dir', 'dirxml',  	             'error', 'exception', 'group', 'groupCollapsed', 'groupEnd',  	             'info', 'log', 'markTimeline', 'profile', 'profileEnd',  	             'table', 'time', 'timeEnd', 'timeStamp', 'trace', 'warn'];	i = 0,	fn = "",	ilen = fns.length; 	for(; i < ilen; i++) {  	    func = fns[i];  	    console[fn] = console[fn] || function(){};  	}  })(window);


HTML5培训技术

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持21不支持0