<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>你好</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0">
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="qrcode.js"></script>
</head>
<body>
<input id="text" type="text" value="http://sn.189.cn/imCroePlatform/business/broadbandOrder/new/list.htm" style="width:80%" /><br />
<div id="qrcode" style="width:100px; height:100px; margin-top:15px;"></div>
<script type="text/javascript" src="js/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="js/jquery-common.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="/imCroePlatform/js/zhuan-common.js"></script>
<script type="text/javascript" src="/imCroePlatform/js/jQueryRotate.2.2.js"></script>
<script type="text/javascript" src="/imCroePlatform/js/json2.js"></script>
<script type="text/javascript" src="/imCroePlatform/js/common.js"></script>
<script type="text/javascript" src="/imCroePlatform/js/comm.js"></script>
<script src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
<script type="text/javascript" src="../../js/share_wx.js"></script>
<script type="text/javascript" src="../../js/des.js"></script>
<script type="text/javascript">
var qrcode = new QRCode($("#qrcode"), {
width : 100,
height : 100
});
function makeCode () {
var elText =$("#text").val();
if (elText==null) {
alert("Input a text");
elText.focus();
return;
}
qrcode.makeCode(elText.value);
}
makeCode();
$("#text").
on("blur", function () {
makeCode();
}).
on("keydown", function (e) {
if (e.keyCode == 13) {
makeCode();
}
});
</script>
</body>