<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>生成二维码</title>
<script type="text/javascript" src="<%= request.getContextPath() %> /js/jqery.min.js"></script>
<script type="text/javascript" src="<%= request.getContextPath() %> /js/jqery.qrcode.min.js"></script>
</head>
<body>
生成的二维码如下:<br>
<div id="qrcode"></div>
<script type="text/javascript" >
jQuery('#qrcode').qrcode("二维码网页生成测试");
</script>
</body>
</html>
添加回答
举报
0/150
提交
取消