【记录】JS 生成 URL 二维码

示例代码:

 1 <html>
 2 <head>
 3 <title>example</title>
 4 </head>
 5 <body>
 6 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
 7 
 8 <script type="text/javascript" src="http://jeromeetienne.github.io/jquery-qrcode/src/jquery.qrcode.js"></script>
 9 <script type="text/javascript" src="http://jeromeetienne.github.io/jquery-qrcode/src/qrcode.js"></script>
10 
11 <p>Render in table</p>
12 <div id="qrcodeTable"></div>
13 <p>Render in canvas</p> 
14 <div id="qrcodeCanvas"></div>
15 <script>
16     jQuery(#qrcodeTable).qrcode({
17         render    : "table",
18         text    : "http://jetienne.com"
19     });    
20     jQuery(#qrcodeCanvas).qrcode({
21         text    : "http://jetienne.com"
22     });    
23 </script>
24 
25 </body>
26 </html>

生成结果:

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。