自从开始期末考试后 已经很久没写博客了 最近学了一手二维码生成 还真是简单又好用 这里简单说一下:
使用的是jquery的插件jquery.qrcode.js;
1.无规定生成
$(function() {
$('#qrcode').qrcode("1110");
})
2.规定大小生成
$('#qrcode').qrcode({tips:对了,这里提一下,默认生成方式是canvas;
width: 100,
height: 100,
text: "888"
});
3.规定大小及颜色
$('#qrcode').qrcode({4. 同时追加 指定生成方式
width: 100,
height: 100,
foreground: "#C00",
background: "#FFF",
text: "10086"
});
$('#qrcode').qrcode({
render: "table",
width: 100,
height: 100,
foreground: "#C00",
background: "#FFF",
text: "10010"
});
下面是利用jquery顺便写的二维码简易生成页面,代码很简单就不贴了,看下效果...