You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago | |
qrcode.js | 2 years ago |
README.md
二维码生成插件
demo:(单二维码) var qrcode = new QRCode(document.getElementById("qrcode"), { width : 150,//设置宽高 height : 150 }); qrcode.makeCode(linkurl);
demo:(二维码列表,多用于后台)
$(".qrcode").each(function(){ var qrcode = new QRCode(document.getElementById($(this).attr("id")), { width : 150,//设置宽高 height : 150 }); qrcode.makeCode($(this).attr("linkurl")); });