用原生js生成二维码的方法,性能上优于jquery

js生成二维码实例(真实有效)

js文件  qrcode.js   代码
  View Code

调用这个JS文件代码:

复制代码
DOCTYPE html>
<html>
<head>
    <title>title>
    <meta charset="utf-8"/>
    <script src="js/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">点击更换验证码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>
复制代码

 

 

其中  调用方法:

var qrcode = new QRCode(elem, {
            width : 96,//设置宽高
            height : 96
        });
        qrcode.makeCode("http://www.baidu.com");

你可能感兴趣的:(js)