东莞市炜创包装制品有限公司 欢迎您! 公司主营"文件资料册/卡膜保护膜/卡夹卡册/文件袋/文件夹"

将url动态转换成二维码插件 - 兼容IE8

插件地址  http://static.runoob.com/assets/qrcode/qrcode.min.js ,网页直接打开,然后ctrl+s保存到本地。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <button id="btn">分享</button>
        <div id="qrcode" style="display: none;"></div>
        <script src="jquery.min.js"></script>
        <script src="qrcode.min.js"></script>
        <script>
             var qrcode = new QRCode(document.getElementById("qrcode"), {
                width : 200,
                height : 200
            });
            var urlPath = window.location.href;
            qrcode.makeCode(urlPath);
            $("#btn").mouseover(function(){
                $('#qrcode').show();
            }).mouseout(function(){
                $('#qrcode').hide();
            })
            
        </script>
    </body>
</html>

 

效果截图:

 

posted @ 2018-06-12 11:13  会飞的小蜜蜂  阅读(1232)  评论(0编辑  收藏  举报
东莞市炜创包装制品有限公司 欢迎您! 公司主营"文件资料册/卡膜保护膜/卡夹卡册/文件袋/文件夹"