一.登入页面
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登入</title>
<script>
function checkFrom() {
var name=document.getElementById("username").value;
if (name.length<6){
alert("长度太短");
return false;
}
var ps=document.getElementById("password").value;
var reps=document.getElementById("repassword").value;
if (ps!=reps){
alert("两次输入的密码不一致!")
return false;
}
var phone=document.getElementById("mobile").value;
if (!/^1(3|4|5|6|7|8|9)\d{9}$/.test(phone)){
alert("手机号码格式不正确!");
return false;
}
var mail=document.getElementById("email").value;
if (!/^([a-zA-Z]|[0-9])(\w|\-)+@[a-zA-Z0-9]+\.([a-zA-Z]{2,4})$/.test(mail)){
alert("邮箱格式不对!");
return false;
}}
</script>
</head>
<body>
<form>
<div>用户名:<input id="username" type="text"></div>
<div>密码:<input id="password" type="password"></div>
<div>确定密码:<input id="repassword" type="password"></div>
<div>手机号码:<input id="mobile" type="number"></div>
<div>邮箱:<input id="email" type="text"></div>
<div><input type="submit" value="注册" onclick="checkFrom()"></div>
</form>
</body>
</html>
效果图如下:
用户名<6个字符则弹出
版权声明:本文为kou_13原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。