jquery生成二维码插件

jquery生成二维码插件216
用法很简单
引用js
<script src="jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="jquery.qrcode.min.js"></script>
定义html
 <div id="output">    </div>
js调用
 <script>
        jQuery(function () {
            jQuery('#output').qrcode("http://www.jqueryfuns.com");
        })
    </script>

也许你还喜欢