-
Notifications
You must be signed in to change notification settings - Fork 0
/
jump_with_qcode.html
executable file
·42 lines (36 loc) · 1.12 KB
/
jump_with_qcode.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
<html>
<head>
<title>课程名/跳转中...</title>
</head>
<script type="text/javascript">
// ======================= 配置 =========================
var password = 'abdc' // 验证码
var url_pan = 'https://pan.baidu.com/s/wangpanlianjie'; // 网盘链接
// ======================================================
function copyText() {
var input = document.getElementById("input");
input.value = password; // 修改文本框的内容
input.select(); // 选中文本
if (document.execCommand('copy')) {
console.log('复制成功');
input.value = "复制成功,正在跳转...🚀";
document.getElementsByClassName("click").value = "正在跳转到网盘🚀"
document.location = url_pan;
} else {
console.log('复制失败');
}
}
</script>
<style>
.click {
width: 100%;
height: 100%;
font-size: 500%;
}
</style>
<body>
<textarea id="input">点点下面👇</textarea>
<br></br>
<button onclick="copyText()" class="click">点我走起</button>
</body>
</html>