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生成二维码实例的主要内容,如果未能解决你的问题,请参考以下文章