- <script></script>的三种用法:
- 放在<body>中
- 放在<head>中
- 放在外部JS文件中
- 三种输出数据的方式:
- 使用 document.write() 方法将内容写到 HTML 文档中。
- 使用 window.alert() 弹出警告框。
- 使用 innerHTML 写入到 HTML 元素。
- 使用 "id" 属性来标识 HTML 元素。
- 使用 document.getElementById(id) 方法访问 HTML 元素。
- 用innerHTML 来获取或插入元素内容。
- 登录页面准备:
- 增加错误提示框。
- 写好HTML+CSS文件。
- 设置每个输入元素的id
- 定义JavaScript 函数。
- 验证用户名6-20位
- 验证密码6-20位
- onclick调用这个函数。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="../static/js/kk.js">
</script>
</head>
<body style="text-align: center">
<div id="container" style="width:500px;margin: 0 auto " >
<div id="header" style="background-color:mediumaquamarine;height: 40px"><h2 align="center" style="margin-bottom:0;font-size: 33px;font-family: 楷体" >狼人杀用户登录</h2></div>
<div id="content" style="background-color:#EEEEEE;height: 260px;width:500px;float:left;text-align:center;font-size: 22px">
<div class="input-box">
<br>用户名<input id="un" type="text" name="user" placeholder="请输入用户账号"style="height: 20px">
</div>
<div class="input-box">
<br>密码<input id="pw" type="password" name="pass"style="height: 20px"><br>
</div>
<br><input type="radio">普通用户
<input type="radio">VIP用户
<div class="input-box">
<br><input type="submit" value="登录" onclick="myLogin()" style="width:65px;height:25px;font-size:18px">
<input type="button"value="注册"onclick="youLogin()" style="width:65px;height:25px;font-size:18px"><br>
<div id="error_box" style="font-size: 25px"><br></div>
</div>
</div>
<div id="footer" style="background-color:mediumaquamarine;clear:both;text-align:center;height: 40px;font-size: 31px;font-family: 楷体">版权*liuda</div>
</div>
</body>
</html>
function myLogin() {
var one=document.getElementById("un");
var two=document.getElementById("pw");
var three=document.getElementById("error_box");
if(two.value.length<6){
three.innerHTML="为了账号安全,请输入6个以上的密码!";
return
}
else if((one.value.charCodeAt(0)>=48)&&one.value.charCodeAt(0)<=57){
three.innerHTML="账号首个不能为数字!";
return
}
else for(var i=1;i<one.value.length;i++){
if((one.value.charCodeAt(i)<48||one.value.charCodeAt(i)>57)&&(one.value.charCodeAt(i)<97||one.value.charCodeAt(i)>122)){
three.innerHTML="账号只能为数字!";
return
}
}
if(one.value.length<6){
three.innerHTML="账号需为6-12个长度!";
return
}
window.alert("登录成功!")
}
![]()