-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdenglu.html
41 lines (40 loc) · 1.3 KB
/
denglu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
<link rel="stylesheet" href="css/rem.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_793301_ssczj2jw8zn.css">
<link rel="stylesheet" href="css/denglu.css">
</head>
<body>
<header>
<input type="text" placeholder="请输入手机号" class="phone">
<input type="password" placeholder="请输入密码" class="password">
<!--<input type="text" placeholder="忘记密码?">-->
<div class="ture">
<i class="iconfont icon-dui"></i>
</div>
<a href="index.html"><div class="denglu">注册</div></a>
<div class="qq"></div>
<div class="wechat"></div>
<div class="weibo"></div>
</header>
</body>
</html>
<script>
let phone=document.querySelector(".phone");
let password=document.querySelector(".password");
let ture=document.querySelector(".ture");
password.onblur=function () {
if (phone.value=="13593322466" && password.value=="123456"){
ture.style.backgroundColor="#0ecf98";
}
}
ture.onclick=function () {
if (phone.value=="13593322466" && password.value=="123456"){
window.open("shouye.html");
}
}
</script>