简单编写一个二维码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单编写一个二维码相关的知识,希望对你有一定的参考价值。
参考网址:http://code.ciaoca.com/javascript/qrcode/
1、下载qrcode.js插件
2、导入插件:
3、js路径:
4、方法:
<script type="text/javascript">
//二维码方法
function code(){
New QRCode(document.getElementById(‘qrcode‘), ‘1234567a23‘);
// 设置参数方式
var qrcode = new QRCode(‘qrcode‘, {
width: 156,
height: 0,
colorDark : ‘#000000‘,
colorLight : ‘#ffffff‘,
correctLevel : QRCode.CorrectLevel.H
});
qrcode.clear();
qrcode.makeCode(‘1234567a23‘);
}
</script>
5、
<body>
<div id="qrcode">
<input type="button" onclick="code();" value="点我">
</div>
</body>
以上是关于简单编写一个二维码的主要内容,如果未能解决你的问题,请参考以下文章
苏彤,你的 Python Flask 编写生成二维码接口写完了