此处简单介绍使用第三方开源的JavaScript项目来用JavaScript创建二维码。
代码使用很简单,此处只记录简单示例。
详情参考:https://github.com/jeromeetienne/jquery-qrcode/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>user list</title> <script type="text/javascript" th:src="@{/js/jquery.min.js}"></script> <script type="text/javascript" th:src="@{/js/jquery.qrcode.min.js}"></script> </head> <body> <div id="qrcode"></div> <script type="text/javascript"> $(function() { $('#qrcode').qrcode({ width : 300, height : 300, text : "这是二维码的内容" }); }); </script> </body> </html>
|