[點(diǎn)晴永久免費(fèi)OA]QRCode.js:使用 JavaScript 生成二維碼
什么是 QRCode.js?QRCode.js 是一個(gè)用于生成二維碼的 Javascript 庫。主要是通過獲取 DOM 的標(biāo)簽,再通過 HTML5 Canvas 繪制而成,不依賴任何庫。 基本用法<div id="qrcode"></div> <script type="text/javascript"> new QRCode(document.getElementById("qrcode"), "http://www.runoob.com"); // 設(shè)置要生成二維碼的鏈接 </script> 或者使用一些可選參數(shù)設(shè)置: var qrcode = new QRCode("test", { text: "http://www.runoob.com", width: 128, height: 128, colorDark : "#000000", colorLight : "#ffffff", correctLevel : QRCode.CorrectLevel.H }); 同樣我們可以使用以下方法: qrcode.clear(); // 清除代碼 qrcode.makeCode("http://www.w3cschool.cc"); // 生成另外一個(gè)二維碼 瀏覽器支持支持該庫的瀏覽器有:IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, 等。 實(shí)例代碼HTML 代碼<input id="text" type="text" value="http://www.runoob.com" /><br /> <div id="qrcode"></div> CSS 代碼#qrcode { width:160px; height:160px; margin-top:15px; } Javascript 代碼var qrcode = new QRCode("qrcode"); function makeCode () { var elText = document.getElementById("text"); if (!elText.value) { alert("Input a text"); elText.focus(); return; } qrcode.makeCode(elText.value); } makeCode(); $("#text"). on("blur", function () { makeCode(); }). on("keydown", function (e) { if (e.keyCode == 13) { makeCode(); } }); 資源下載Qrcode 庫及實(shí)例下載:qrcodejs-04f46c6.zip Github 地址:https://github.com/davidshimjs/qrcodejs 該文章在 2022/6/2 17:10:39 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |