-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrop.html
47 lines (42 loc) · 1.13 KB
/
drop.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
43
44
45
46
47
<html>
<head>
<meta charset="utf-8">
<title>攀岩志 - 安装说明</title>
<link rel="icon" href="favicon.ico">
<style type="text/css">
* {
margin: 0;
padding: 4px;
color: #666;
}
a {
color: dodgerblue;
}
</style>
</head>
<body>
<p>
常用:
<a href="https://www.21cnjy.com" target="_blank">21世纪</a>
<a href="http://themis.xkw.com" target="_blank">学科网</a>
<a href="./index.html" target="_blank">攀岩志</a>
</p>
<p>
安装步骤:
</p>
<p>
1、打开上传页面 - 右键 - "检查" - "控制台"
</p>
<p>
2、如下图:复制下面代码,然后粘贴在"控制台"里,然后"回车",完成安装
</p>
<p style="color:magenta;font-size: 18px;">
const script = document.createElement('script');
script.src='https://panyanzhi.github.io/page/js/21.js';
document.body.appendChild(script);
</p>
<p>
3、在"控制台"同一栏的最右侧"X"按钮,点击可关闭"控制台"
</p>
</body>
</html>