qrcode二维码组件,qrcode.min.js依靠jQuery 示例代码: $("#qrcode").qrcode({ render : "canvas", //设置渲染方式,有table和canvas text : '', //扫描二维码后自动跳向该链接 width : "300", //二维码的宽度 height : "300", //二维码的高度 background : "#ffffff", //二维码的后景色 foreground : "#000000", //二维码的前景色 src: 'images/logo.png', //二维码中间的图片 }); 将在