1、使用QRCode.js插件生成,不依赖任何库,原生JS。
2、使用方法
new QRCode(document.getElementById("qrcode"), "http://jindo.dev.naver.com/collie");
还可以设置它的宽高:
var qrcode = new QRCode(document.getElementById("qrcode"), {
text: "http://jindo.dev.naver.com/collie",
width: 128,
height: 128,
colorDark : "#000000",
colorLight : "#ffffff",
correctLevel : QRCode.CorrectLevel.H
});
插件github地址:
https://github.com/davidshimjs/qrcodejs