-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqrcode.html
42 lines (38 loc) · 1.18 KB
/
qrcode.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<script src="js/es6.js" type="module"></script>
<!-- <script src="js/centalab-sdk.js"></script> -->
<script src="js/monitor.readinfo.min.js"></script>
<!-- <script src="https://imonitor.centaline.com.cn/sdk/centalab-sdk.js"></script> -->
<script src="js/jquery.js"></script>
<script src="js/qrcode.min.js"></script>
<title>qrcode</title>
</head>
<body>
<div id="qrcode"></div>
</body>
</html>
<script type="text/javascript">
var qrcode = new QRCode(document.getElementById("qrcode"), {
width: 256,
height: 256
});
function makeCode() {
var baseUrl = 'http://my2018.centaline.com.cn/aplus';
var url = location.href;
var params = '';
if (url.indexOf('?') !== -1) {
params = url.substring(url.indexOf('?'), url.length);
}
var qrcode_str = baseUrl + params;
qrcode.makeCode(qrcode_str);
}
makeCode();
$('#qrcode').removeAttr('title');
</script>