QRCode.js 是一个用于生成二维码的 JavaScript 库。主要是通过获取 DOM 的标签,再通过 HTML5 Canvas 绘制而成,不依赖任何库。
1 2 3 4 |
<div id="qrcode"></div> <script type="text/javascript"> new QRCode(document.getElementById("qrcode"), "https://www.runoob.com"); // 设置要生成二维码的链接 </script> |
或者使用一些可选参数设置:
1 2 3 4 5 6 7 8 |
var qrcode = new QRCode("test", { text: "https://www.runoob.com", width: 128, height: 128, colorDark : "#000000", colorLight : "#ffffff", correctLevel : QRCode.CorrectLevel.H }); |
同样我们可以使用以下方法:
1 2 |
qrcode.clear(); // 清除代码 qrcode.makeCode("https://c.runoob.com"); // 生成另外一个二维码 |
支持该库的浏览器有:IE6~10, Chrome, Firefox, Safari, Opera, Mobile Safari, Android, Windows Mobile, 等。
1 2 |
<input id="text" type="text" value="https://www.runoob.com" /><br /> <div id="qrcode"></div> |
1 2 3 4 5 |
#qrcode { width:160px; height:160px; margin-top:15px; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
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.min
github:https://github.com/davidshimjs/qrcodejs
from:https://www.runoob.com/w3cnote/javascript-qrcodejs-library.html