jquery.qrcode生成二维码支持中文

时间:2022-05-09 08:49:42

  基本使用方法:

 

1、首先在页面中加入jquery库文件和qrcode插件。

 

<script type="text/javascript" src="jquery.js"></script> 
<script type="text/javascript" src="jquery.qrcode.min.js"></script> 

 

2、在页面中需要显示二维码的地方加入以下代码:

 

<div id="code"></div> 

 

3、调用qrcode插件。

 

qrcode支持canvas和table两种方式进行图片渲染,默认使用canvas方式,效率最高,当然要浏览器支持html5。直接调用如下:

 

$('#code').qrcode("http://www.helloweba.com"); //任意字符串 

 

您也可以通过以下方式调用:

 

$("#code").qrcode(
    render: "table", //table方式 
    width: 200, //宽度 
    height:200, //高度 
    text: "www.helloweba.com" //任意内容 
}); 

 

这样就可以在页面中直接生成一个二维码,你可以用手机“扫一扫”功能读取二维码信息。

 

但是你会发现不支持中文二维码 是因为编码格式有冲突,这样解决把这段js写进去:

 
 <script type="text/javascript"> function utf16to8(str) { var out, i, len, c; out = ""; len = str.length; for (i = 0; i < len; i++) { c = str.charCodeAt(i); if ((c >= 0x0001) && (c <= 0x007F)) { out += str.charAt(i); } else if (c > 0x07FF) { out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F)); out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F)); out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F)); } else { out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F)); out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F)); } } return out; } $(function () { jQuery('#output').qrcode(utf16to8("今天天气不错")); }) </script>  

渲染的时候也可以这样输出:

$("#output").qrcode({
// render: "table", //table方式 (可以选择渲染方式,一般默认为为canvas比较好)
width: 80, //宽度
height: 80, //高度
text: utf16to8("你好啊") //任意内容
});