使用jquery.qrcode生成二维码_JavaScript_WEB开发_文档_源码天空

二维码应用已经渗透到我们的生活工作当中,您只需要用手机对着二维码“扫一扫”即可获得所对应的信息,方便我们了解商家、购物、观影等等。本文将介绍一款基于jquery的二维码生成插件qrcode,在页面中调用该插件就能生成对应的二维码。

qrcode其实是通过使用jQuery实现图形渲染,画图,支持canvas(HTML5)和table两种方式,您可以到https://github.com/jeromeetienne/jquery-qrcode获取最新的代码。

如何使用

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

<code class="html"></p><p>&lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt;</p><p>&lt;script type="text/javascript" src="jquery.qrcode.min.js"&gt;&lt;/script&gt;</p><p></code>

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

<code class="html"></p><p>&lt;div id="code"&gt;&lt;/div&gt;</p><p></code>

3、调用qrcode插件。

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

<code class="js"></p><p>$('#code').qrcode("http://www.codesky.net"); //任意字符串</p><p></code>

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

<code class="js"></p><p>$("#code").qrcode({</p><p>	render: "table", //table方式</p><p>	width: 200, //宽度</p><p>	height:200, //高度</p><p>	text: "www.codesky.net" //任意内容</p><p>});</p><p></code>

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

识别中文

我们试验的时候发现不能识别中文内容的二维码,通过查找多方资料了解到,jquery-qrcode是采用charCodeAt()方式进行编码转换的。而这个方法默认会获取它的Unicode编码源码天空,如果有中文内容,在生成二维码前就要把字符串转换成UTF-8,然后再生成二维码。您可以通过以下函数来转换中文字符串:

<code class="js"></p><p>function toUtf8(str) {   </p><p>    var out, i, len, c;   </p><p>    out = "";   </p><p>    len = str.length;   </p><p>    for(i = 0; i &lt; len; i++) {   </p><p>    	c = str.charCodeAt(i);   </p><p>    	if ((c &gt;= 0x0001) &amp;&amp; (c &lt;= 0x007F)) {   </p><p>        	out += str.charAt(i);   </p><p>    	} else if (c &gt; 0x07FF) {   </p><p>        	out += String.fromCharCode(0xE0 | ((c &gt;&gt; 12) &amp; 0x0F));   </p><p>        	out += String.fromCharCode(0x80 | ((c &gt;&gt;  6) &amp; 0x3F));   </p><p>        	out += String.fromCharCode(0x80 | ((c &gt;&gt;  0) &amp; 0x3F));   </p><p>    	} else {   </p><p>        	out += String.fromCharCode(0xC0 | ((c &gt;&gt;  6) &amp; 0x1F));   </p><p>        	out += String.fromCharCode(0x80 | ((c &gt;&gt;  0) &amp; 0x3F));   </p><p>    	}   </p><p>    }   </p><p>    return out;   </p><p>}</p><p></code>

以下示例:

<code class="js"></p><p>var str = toUtf8("钓鱼岛是中国的!");</p><p>$('#code').qrcode(str);</code>

来源URL:http://www.codesky.net/article/201308/182043.html