无论用PHP生成,还是用JavaScript生成都是可以的,从代码改动来说,用JavaScript会更省事些。所以这里就用jQuery吧。正好网上有个 jquery.qrcode.js 的扩展,可以拿来用。使用起来也很简单,比如这样:
然后用微信、支付宝钱包什么的扫一扫就可以在手机浏览器打开了,很方便,感谢 jquery.qrcode.js 的作者。
生成QR码的代码如下:
<div id="qrcode"></div> <script src="//code.jquery.com/jquery-1.6.1.min.js" type="text/javascript"> <script src="http://blog.fbzl.org/wp-content/themes/the-newswire/library/js/jquery.qrcode.min.js" type="text/javascript"> <script type="text/javascript"> jQuery.noConflict(); jQuery("#qrcode").qrcode({ render: "canvas", //table方式 width: 150, //宽度 height:150, //高度 text: 'http://www.fbzl.org' //任意内容 当前页为 window.location.href }); </script>
jquery.qrcode.js 其实是通过使用jQuery实现图形渲染,画图,支持canvas(HTML5)和table两种方式,默认使用canvas方式,效率最高,当然要浏览器支持html5。直接调用如下:
jQuery('#code').qrcode("http://www.fbzl.org");
如果浏览器不支持 HTML5,或者你要配置图片的尺寸,则可以采用这种方式:
jQuery("#code").qrcode({ render: "canvas", //canvas or table方式 width: 150, //宽度 height:150, //高度 text: 'http://www.fbzl.org/' //内容 当前页为 window.location.href });
现在博客每篇文章右侧都有生成QR码,可以扫一扫,在手机上阅读了。