跳到正文
当下的七炎
返回

javascript生成二维码

编辑文章

因搜索出来的大部分结果都是jquery.qcode.js,不是很理想的,我就写下这个记录一下 github地址https://github.com/aralejs/qrcode 它的优点

1.中文不乱码 2.不依赖jquery 3.支持中间显示图片

调用方式

 <div id="qrcodeSVG"></div>
    <script src='index.js'></script>
    <script>
    var qrcode = new AraleQRCode({
        text: 'http://raclen.win',
        image: 'raclen.jpg',
        size: 100,
        imageSize: 16
    });
    document.getElementById('qrcodeSVG').appendChild(qrcode);
    </script>

有图有真相 清晨好文章


编辑文章
分享这篇文章:

评论

使用 GitHub 账号登录后即可评论


上一篇
对症下药
下一篇
async流程控制