<!DOCTYPE html> <html lang="en"> <head> <title>二维码生成</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/> <script type="text/javascript" src="//cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript" src="//static.runoob.com/assets/qrcode/qrcode.min.js"></script> </head> <body> <span style="color: red">生成一个input框,设置网址,</span> <input id="text" type="text" value="http://10.140.192.220:8080/home" style="width:80%"/><br/> // 生成二维码的div <div id="qrcode" style="width:100px; height:100px; margin-top:15px;"></div> <script type="text/javascript"> // 声明一个二维码对象,并设置宽高 var qrcode = new QRCode(document.getElementById("qrcode"), { width: 100, height: 100 }); // 生成二维码的函数 function makeCode() { var elText = document.getElementById("text"); // 网址为空,使用弹框提示 if (!elText.value) { alert("Input a text"); elText.focus(); return; } // 生成二维码 qrcode.makeCode(elText.value); } makeCode(); // 绑定事件 blur当输入域失去焦点 (blur) 时改变其颜色并且生成二维码 $("#text").on("blur", function () { makeCode(); // 绑定事件 当回车键按下时生成二维码 }).on("keydown", function (e) { if (e.keyCode == 13) { makeCode(); } }); </script> </body> </html>
示例: