使用jquery-qrcode生成二维码

qrcode其实是通过使用jQuery实现图形渲染,画图,支持canvas(HTML5)和table两种方式,可以到
https://github.com/jeromeetienne/jquery-qrcode
获取最新的代码。
如何使用
1、首先在页面中加入jquery库文件和qrcode插件

 
 

2、在页面中需要显示二维码的地方加入以下代码:

3、调用qrcode插件
qrcode支持canvas和table两种方式进行图片渲染,默认使用canvas方式,效率最高,当然要浏览器支持html5
直接调用:

$('#code').qrcode("http://www.helloweba.com"); //任意字符串

高级属性:

$("#code").qrcode({ 
    render: "table", //table方式 
    width: 200, //宽度 
    height:200, //高度 
    text: "www.helloweba.com" //任意内容 
});

你可能感兴趣的:(使用jquery-qrcode生成二维码)