编程世界 发表于 2017-3-31 18:32

今天试了用jQuery生成二维码,成功

<%@pagecontentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jquery.qrcode.js</title>

<%-- <script type="text/javascript"src="<%=request.getContextPath()%>/src/jquery.qrcode.js"></script>
<script type="text/javascript" src="<%=request.getContextPath()%>/src/qrcode.js"></script>
<script type="text/javascript" language="javascript" src="<%=request.getContextPath()%>/src/jquery-1.9.1.min.js"></script>
--%>

<%-- <script type="text/javascript" src="<%=request.getContextPath()%>/src/jquery-1.9.1.min.js"></script>
--%><script type="text/javascript" src="<%=request.getContextPath()%>/src/jquery.qrcode.js"></script>
<script type="text/javascript" src="<%=request.getContextPath()%>/src/qrcode.js"></script>

<script type="text/javascript" src="<%=request.getContextPath()%>/js/jquery.qrcode.min.js"></script>

</head>
<body>
<p>二维码实例:</p>
<p>1:Render in table</p>
<divid="qrcodeTable"></div>
<p>2:Render in canvas</p>
<divid="qrcodeCanvas"></div>
<script>
       jQuery('#qrcodeTable').qrcode({
            render   :"table",
            width    :128,
            height   :128,
            text:"http://jetienne.com"
       });   
       jQuery('#qrcodeCanvas').qrcode({
            width    :128,
            height   :128,   
            text:"www.baidu.com"
       });   
</script>
</body>
</html>

汪星人 发表于 2017-3-31 19:57

O(∩_∩)O哈哈哈~ 代码呢???

二狗 发表于 2017-3-31 23:07

http://www.52itstyle.top//mobcent//app/data/phiz/default/01.png666

Coffee 发表于 2017-4-1 08:28

代码呢?只有这么点http://www.52itstyle.top//mobcent//app/data/phiz/default/04.png

屁孩儿 发表于 2017-4-1 17:17

真的吗

zhuifengjiayou 发表于 2017-4-12 12:58

来一个代码示例呗

qq895238974 发表于 2017-4-13 07:59

不对吧?
页: [1]
查看完整版本: 今天试了用jQuery生成二维码,成功