给出一段字符串 , 用JS生成对应的二维码 :
首先 , 下载这个 , 然后在HTML里面引用qrcode
然后创建个div id=qrcode
然后 写下这么一段
var qrcode = new QRCode('qrcode', {
text: '字符串',
width: 160,
height: 160,
colorDark : '#000000',
colorLight : '#ffffff',
correctLevel : QRCode.CorrectLevel.H
});
上面的text好像没用 , 我是用这行来传字符串的
qrcode.makeCode("传入这个字符串");