forked from LeekHub/leek-fund
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtucao.html
48 lines (48 loc) · 1.27 KB
/
tucao.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
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>韭菜盒子社区</title>
<link
href="https://cdn.bootcdn.net/ajax/libs/element-ui/2.9.2/theme-chalk/index.css"
rel="stylesheet"
/>
<style>
a {
text-decoration: none;
}
</style>
</head>
<body>
<div style="overflow-x: auto; min-width: 800px">
<a
href="https://support.qq.com/products/302926"
class="el-button el-button--primary el-button--mini"
style="position: fixed; right: 10px; top: 10px"
>
浏览器打开
</a>
<button
id="refreshBtn"
class="el-button el-button--primary el-button--mini"
style="position: fixed; right: 120px; top: 10px"
>
刷新
</button>
<iframe
id="iframeEl"
src="https://support.qq.com/products/302926"
frameborder="0"
style="width: 100%; height: 900px"
></iframe>
</div>
<script>
document.querySelector('#refreshBtn').onclick = function (e) {
e.preventDefault();
iframeEl.src = '';
iframeEl.src = 'https://support.qq.com/products/302926';
};
</script>
</body>
</html>