qrcode插件实现在线生成二维码

折月煮酒 提交于 2020-02-01 02:23:43

示例代码

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>

<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.js"></script>
<script src="https://cdn.bootcss.com/jquery.qrcode/1.0/jquery.qrcode.min.js"></script>

<body>

    <div id="qrcode" style="width:180px;text-align:center;margin:0 auto;"></div>

</body>
<script>
    $("#qrcode").qrcode({
        width: 200,
        height: 200,
        text: "https://www.baidu.com/",
		background://背景色,
		foreground://前景色
    })
</script>

</html>
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!