jquery二维码生成插件根据域名生成二维码jquery.qrcode.js

发布时间:2026-06-09 18:57:25 浏览量:32
  • 依赖文件:引入了 jQuery 库和 jquery.qrcode 二维码插件,作为核心运行基础。

  • 核心逻辑:页面加载完成后,在 <div id="output"> 容器中,将网址 http://www.renrendaima.com 自动转换为二维码并展示。

<!DOCTYPE html>
<html>
<head>
<title>Demo page</title>
</head>
<body>
<p>
    TODO make a nice looking pure client qrcode generator
    even allow download of the image
</p>
<div id="output"></div>
<script src="jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="jquery.qrcode.min.js"></script>
<script>
jQuery(function(){
    jQuery('#output').qrcode("http://www.renrendaima.com");
})
</script>
</body>
</html>


下载地址
上一篇: 已是第一篇