QRCode.js 是一個用於生成二維碼的 JavaScript 庫。主要是經過獲取 DOM 的標籤,再經過 HTML5 Canvas 繪製而成,不依賴任何庫。javascript
基本用法css
載入 JavaScript 文件html
<script type="text/javascript" src="http://static.runoob.com/assets/qrcode/qrcode.min.js"></script>
DOM結構java
<div id="qrcode"></div>
JavaScropt調用jquery
//簡單形式 new QRCode(document.getElementById("qrcode"), "http://www.runoob.com"); // 設置要生成二維碼的連接 // 設置參數方式 var qrcode = new QRCode("test", { text: "http://www.runoob.com", width: 128, height: 128, colorDark : "#000000", colorLight : "#ffffff", correctLevel : QRCode.CorrectLevel.H }); // 使用 API qrcode.clear(); qrcode.makeCode('new content');
參數說明
new QRCode(element, option)
名稱 | 默認值 | 說明 |
---|---|---|
element | - | 顯示二維碼的元素或該元素的 ID |
option | 參數配置 |
option 參數說明瀏覽器
名稱 | 默認值 | 說明 |
---|---|---|
width | 256 | 圖像寬度 |
height | 256 | 圖像高度 |
colorDark | "#000000" | 前景色 |
colorLight | "#ffffff" | 背景色 |
correctLevel | QRCode.CorrectLevel.L | 容錯級別,可設置爲: QRCode.CorrectLevel.Lide QRCode.CorrectLevel.Mui QRCode.CorrectLevel.Qspa QRCode.CorrectLevel.Hscala |
API 接口
名稱 | 說明 |
---|---|
makeCode(text) | 設置二維碼內容 |
clear() | 清除二維碼。(僅在不支持 Canvas 的瀏覽器下有效) |
瀏覽器支持
支持該庫的瀏覽器有:IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, 等。
實例代碼
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(); } });
HTML完整代碼