将一个字符串(可以是中文,在生成二维码图片之前将中文转码)生成二维码图片,如果想要带log的二维码,可以在生成后的二维码中间部位自己添加一个小log,log图片不要太大,不然就扫描不出内容了。 复制代码 代码如下: <br>$(function () { <br>$("#bt").bind("click", function () { <br>text = $("#text").val(); <br>$("#div_div").qrcode(utf16to8(text)); <br><br>}) <br>}) <br>function utf16to8(str) { //转码 <br>var out, i, len, c; <br>out = ""; <br>len = str.length; <br>for (i = 0; i < len; i ) { <BR>c = str.charCodeAt(i); <BR>if ((c >= 0x0001) && (c <= 0x007F)) { <BR>out = str.charAt(i); <BR>} else if (c > 0x07FF) { <br>out = String.fromCharCode(0xE0 | ((c >> 12) & 0x0F)); <br>out = String.fromCharCode(0x80 | ((c >> 6) & 0x3F)); <br>out = String.fromCharCode(0x80 | ((c >> 0) & 0x3F)); <br>} else { <br>out = String.fromCharCode(0xC0 | ((c >> 6) & 0x1F)); <br>out = String.fromCharCode(0x80 | ((c >> 0) & 0x3F)); <br>} <br>} <br>return out; <br>} <br> 这里引用了三个js包,其中一个是jquery包,这个随便版本,另外两个就是画二维码用的js包了。 js包下载http://download.csdn.net/detail/anxin591025/6254607