分享
js 有专门生成二维码的库:https://cdn.bootcss.com/jquery.qrcode/1.0/jquery.qrcode.min.js 可以在bootcdn 上搜到
以cdn为例子,生成cdn的二维码
var path = "https://www.bootcdn.cn/jquery/";
$("#qrcode").qrcode({
text: path, //设置二维码内容
render: "table", //设置渲染方式
width: 256, //设置宽度,默认生成的二维码大小是 256×256
height: 256, //设置高度
typeNumber: -1, //计算模式
background: "#ffffff", //背景颜色
foreground: "#000000" //前景颜色
}
);
更加祥细参考
https://blog.csdn.net/winycg/article/details/78789844
看看