QRCode.js生成二维码

QRCode.js 是一个用于生成二维码图片的插件。

  • github地址

在线实例

实例预览基础实例
实例预览API接口

使用方法

  1. 载入JS文件

  1. DOM结构

调用方式

  • 简单方式
new QRCode(document.getElementById('qrcode'), 'your content'); 
  • 设置参数方式
var qrcode = new QRCode('qrcode', {    
text: googleurl,    
width: 180,   
height: 180,    
colorDark : '#000000',    
colorLight : '#ffffff',    
correctLevel : QRCode.CorrectLevel.H
});
  • API方式
qrcode.clear(); 
qrcode.makeCode('new content'); 

你可能感兴趣的:(QRCode.js生成二维码)