<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<title>七娃-二维码生成器</title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<script type="text/javascript" src="http://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="http://static.runoob.com/assets/qrcode/qrcode.min.js"></script>
</head>
<style type="text/css">
.main{width: 1000px;margin: 0 auto;text-align: center;}
</style>
<body>
<div class="main">
<h1 align="center" style="margin-top: 50px;">网址二维码在线生成</h1>
<div id="qrcode" style="width:100px; height:100px; margin: 150px auto 0 auto;"></div>
<input id="text" type="text" value="http://www.runoob.com" style="text-align: center;margin-top: 30px;width:40%;border: 1px solid #333;height: 36px;" /><br />
</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();
$("#text").
on("blur", function () {
makeCode();
}).
on("keydown", function (e) {
if (e.keyCode == 13) {
makeCode();
}
});
</script>
</body>
</html>
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
用空闲时间做了一个小程序-二维码生成器二维码 十进制 UI
-
在线二维码生成器
在线二维码生成器草料二维码
二维码 生成器 -
移动端二维码生成器
文章目录1.选择图片 输入标题和价格2.生成二维码 可以保存 预览3.扫描生成二维码 进入页面1.
node.js reactjs 跨域 Access -
Django中的二维码生成器
Django中的二维码生成器
django html -
C#配合zxing的二维码生成器
最近尝试着用c#配合zxing写了个二维码生成器,暂时能生成字符、网址、vcard名片
c# 二维码 生成器 zxing