生成二维码

Posted 步狰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成二维码相关的知识,希望对你有一定的参考价值。

<!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>

以上是关于生成二维码的主要内容,如果未能解决你的问题,请参考以下文章

二维码生成器生成的二维码是多久过期?

如何生成带中间LOGO的二维码?

文字如何生成二维码?

二维码生成器软件哪个好

为啥我用二维码生成器,生成的二维码扫描不出来?

微购小程序怎么生成二维码