js生成二维码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js生成二维码相关的知识,希望对你有一定的参考价值。
一、js 二维码生成demo
①、先下载 js qrcode 库
②、使用极其简单
<!DOCTYPE html> <html> <head> <title>qrcode demo</title> </head> <body> <div id="qrcode"></div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script> <script type="text/javascript" src="jquery.qrcode.min.js"></script> <script> jQuery(function(){ jQuery(‘#qrcode‘).qrcode("http://taobao.com"); }) </script> </body> </html>
二、参考文献
https://github.com/jeromeetienne/jquery-qrcode
以上是关于js生成二维码的主要内容,如果未能解决你的问题,请参考以下文章