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

批量动态生成二维码

时间:2016-10-21 10:45:05      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:this   his   随机数   media   att   script   each   span   时间戳   

批量动态生成二维码

   <script type="text/javascript" src="/site_media/js/qrcode.js"></script>
   // 生成二维码
    $(".qrcode").each(function(){
        var timestamp = new Date().getTime() + Math.random().toString().split(".")[1];  // 时间戳 + 随机数
        $(this).attr("id", timestamp);
        var q_type = $(this).attr("data-type");
        var q_id = $(this).attr("data-id");
        var qrcode_text = "http://www.domain.cn/qr/?type="+q_type+"&id="+q_id;

        var qrcode = new QRCode(timestamp, {
            width: 140,
            height: 140,
            colorDark: ‘#000000‘,
            colorLight: ‘#ffffff‘,
            correctLevel: QRCode.CorrectLevel.L
        });
        qrcode.makeCode(qrcode_text);
    });

 

.

批量动态生成二维码

标签:this   his   随机数   media   att   script   each   span   时间戳   

原文地址:http://www.cnblogs.com/weiok/p/5983367.html

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