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.
郭向斌 53c180105a
'init'
2 years ago
..
README.md 'init' 2 years ago
qrcode.js 'init' 2 years ago

README.md

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

二维码生成插件

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")); });