<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>二维码生成</title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<script src="/js/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="//cdn.bootcss.com/lrsjng.jquery-qrcode/0.12.0/jquery.qrcode.min.js"></script>
<body>
<div id="qrcode"></div>
<script>
$(function () {
$("#qrcode").qrcode({
render: "canvas", //table方式
width: 166, //宽度
height: 166, //高度
text: 可以为文本或者当前url等任意内容,
});
});
</script>
</body>
</html>
二维码生成
最新推荐文章于 2025-01-30 18:24:19 发布