@QRCode

简介
二维码非常方便分享内容;qrcode是jquery的一个类库,应该先引入jQuery库再引入qrcode.js;
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/qrcode.min.js"></script>
更多内容,请访问qrcode仓库
[] 默认二维码
. 默认大小是256*256
new QRCode(document.getElementById("qrcode-default"), "https://glpla.github.io");
[] 定制二维码
new QRCode(document.getElementById("qrcode"), {
    text: "https://glpla.github.io",
    width: 128,
    height: 128,
    colorDark: "#000000",
    colorLight: "#ffffff",
    correctLevel: QRCode.CorrectLevel.H
});