利用jquery包將字符串生成二維碼圖片
將一個字符串(可以是中文,在生成二維碼圖片之前將中文轉(zhuǎn)碼)生成二維碼圖片,如果想要帶log的二維碼,可以在生成后的二維碼中間部位自己添加一個小log,log圖片不要太大,不然就掃描不出內(nèi)容了。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="js/jquery-1.8.3.js" type="text/javascript"></script>
<script src="js/qrcode.js" type="text/javascript"></script>
<script src="js/jquery.qrcode.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$("#bt").bind("click", function () {
text = $("#text").val();
$("#div_div").qrcode(utf16to8(text));
})
})
function utf16to8(str) { //轉(zhuǎn)碼
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;
}
</script>
</head>
<body>
<input type="text" id="text" />
<input type="button" value="shengc" id="bt" />
<div id="div_div" style="width:400px;height:400px;border:1px solid #000;"></div>
</body>
</html>
這里引用了三個js包,其中一個是jquery包,這個隨便版本,另外兩個就是畫二維碼用的js包了。
js包下載http://download.csdn.net/detail/anxin591025/6254607
PS:這里再提供一個本站的二維碼生成工具加強版(帶logo與各種定制功能)供大家使用:
相關文章
jQuery ajax 跨域插件jquery.xdomainrequest.min.js的使用方法
jQuery XDomainRequest 是一個利用 XDomainRequest 對象為 IE8、IE9 實現(xiàn)跨域資源共享(CORS - Cross Origin Resource Sharing)的 jQuery 插件2023-06-06jQuery .tmpl(), .template()學習資料小結(jié)
昨晚無意中發(fā)現(xiàn)一個有趣的jQuery插件.tmpl(),其文檔在這里。2011-07-07EasyUI?Pagination如何實現(xiàn)分頁功能getPager
這篇文章主要介紹了EasyUI?Pagination如何實現(xiàn)分頁功能getPager問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-04-04jQuery 借助插件Lavalamp實現(xiàn)導航條動態(tài)美化效果
導航條動態(tài)顯示效果借助插件Lavalamp可以輕松實現(xiàn),以前用animate來實現(xiàn),效果不是很好2013-09-09jQuery setTimeout傳遞字符串參數(shù)報錯的解決方法
這篇文章主要介紹了jQuery setTimeout傳遞字符串參數(shù)報錯的解決方法,需要的朋友可以參考下2014-06-06