<%@ 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/jquery.min.js"></script> <script type="text/javascript" src ="<%=request.getContextPath() %>/js/jquery.qrcode.min.js"></script> </head> <body> 生成的二维码如下:<br> <div id = "qrcode"></div> <script type="text/javascript"> //二选一 jQuery('#qrcode').qrcode("https://blog.***.net/weixin_43392489"); //jQuery('#qrcode').qrcode({width: 250, height: 250,text: "www.baidu.com/hhh"}); </script> </body> </html>