!-- flowchart 箭头图标 勿删 --
<!DOCTYPE html>
<html xmlns="https://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
<div id="Article-content"></div>
<script src="Scripts/jquery-3.3.1.js"></script>
<script src="Content/js/jquery.qrcode.js"></script>
<script src="Content/js/utf.js"></script>
<script type="text/javascript">
function init() {
//Article-content 为显示二维码的div id
$("#Article-content").qrcode({
render: "canvas", //设置渲染方式,有table和canvas,使用canvas方式渲染性能相对来说比较好
text: "https://www.myindex.com/my.html", //扫描二维码后显示的内容,可以直接填一个网址,扫描二维码后自动跳向该链接
width: "200", //二维码的宽度
height: "200", //二维码的高度
background: "#ffffff", //二维码的后景色
foreground: "#000000", //二维码的前景色
src: '/Images/orderedList9.png' //二维码中间的图片
});
}
init();
</script>
</body>
</html>
<!DOCTYPE