qrcode生成的二维码兼容性问题

在工作中使用qrcode.js生成二维码, 实际测试中发现IE7/8都出现了生成的二维码图片尺寸比chrome/遨游/IE9+小很多的情况, 先怀疑是页面样式不兼容的问题, 但调试了半天未果, 还是决定直接在qrcode调用上修改

兼容性代码如下:

var qrMode = {
	width : 100,
	height : 100
};
if(navigator.appName.indexOf("Microsoft") != -1){
	//IE
	if(navigator.appVersion.match(/8./i)=="8."){
		//ie8
		qrMode = {
			width : 130,
			height : 130
		};
	}
	else if( navigator.appVersion.match(/7./i)=="7."){
		//ie7
		qrMode = {
			width : 130,
			height : 130
		};
	}
	else{
		//other ie
		;
	}
}
var qrcode = new QRCode(document.getElementById("qrcode"), qrMode);


你可能感兴趣的:(前端)