jQuery生成二维码实例

Posted ai10999

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery生成二维码实例相关的知识,希望对你有一定的参考价值。

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>jQuery生成二维码实例</title>
  <script src="http://apps.bdimg.com/libs/jquery/1.8.3/jquery.js"></script> 
  <script type="text/javascript" src="http://static.runoob.com/assets/qrcode/qrcode.min.js"></script>
 </head>
 <body>
  <div id="code"></div>
  <script>
    function newCode(str)
        var qrcode = new QRCode(document.getElementById("code"), 
            width : 200,
            height : 200
        );
        qrcode.makeCode(str);
    
    newCode("https://www.baidu.com");
    </script>
 </body>
</html>

来自微信公众号:编程社

技术图片

程序员日常进阶宝典,欢迎关注!

以上是关于jQuery生成二维码实例的主要内容,如果未能解决你的问题,请参考以下文章

怎么根据信息生成二维码 jquery 动态

jquery qrcode 怎么生成带logo的二维码

前端生成二维码 jquery.qrcode.js

jquery二维码生成插件jquery.qrcode.js

使用jQuery插件生成二维码

生成二维码的 jQuery 插件:jquery.qrcode.js的中文乱码问题