码迷,mamicode.com
首页 > 其他好文 > 详细

生成二维码

时间:2017-11-07 14:27:08      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:cli   onload   width   window   click   set   onclick   height   element   

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8"/>
<script src="qrcode.js"></script>//百度搜索自己下
<style>
#qrcode{
text-align: center;
display: table-cell;
width: 96px;
height: 96px;
vertical-align:middle;
position: relative;
}
</style>
</head>
<body>
<div id="qrcode">
</div>

<input type="text" id="getval"/> <button id="send">click!~</button>
<script>
window.onload =function(){
var qrcode = new QRCode(document.getElementById("qrcode"), {
width : 96,//设置宽高
height : 96
});
qrcode.makeCode("http://www.baidu.com");
document.getElementById("send").onclick =function(){
qrcode.makeCode(document.getElementById("getval").value);
}
}


</script>
</body>
</html>

生成二维码

标签:cli   onload   width   window   click   set   onclick   height   element   

原文地址:http://www.cnblogs.com/ptisagoodman/p/7798652.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!