-
Notifications
You must be signed in to change notification settings - Fork 0
/
for2.html
37 lines (34 loc) · 1.2 KB
/
for2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, shrink-to-fit=no, viewport-fit=cover" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<title>Document</title>
<style>
.btn {
width: 300px;
height: 100px;
background-color: cadetblue;
color: coral;
line-height: 100px;
border-radius: 30px;
text-align: center;
margin: 20px auto 0;
}
</style>
</head>
<body>
<div class="btn" onclick="goNext()">下一步m吗</div>
<!-- <script type="text/javascript" src="https://js.cdn.aliyun.dcloud.net.cn/dev/uni-app/uni.webview.1.5.2.js"></script> -->
<script>
function goNext() {
console.log('aaaaaaaaaaa')
window.location.href = 'https://giserman001.github.io/for1.html'
}
</script>
</body>
</html>