用JS的inner HTML完成注册表的提示功能
就写了一个很简单很简单的注册表,用JS完成了一个简单的验证提示功能
知识点
-
innerHTML:设置或返回表格行的开始和结束标签之间的 HTML
-
onblur:在元素失去焦点时触发,经常用于表单验证代码
-
type="file":用于文件上传
-
accept:只能与 <input type="file"> 配合使用。它规定能够通过文件上传进行提交的文件类型 (不限制图像的格式,可以写为:accept="image/*")
-
邮箱的验证主要是用了正则表达式
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>注册页面</title>
<style type="text/css">
.box{
height: 200px;
width: 380px;
margin: 0 auto;
margin-top: 100px;
}
span{
color: red;
font-size: 12px;
}
</style>
</head>
<body>
<div class="box">
<form method="post" onsubmit="return check()" name="sub">
<p>用户名<input type="text" placeholder="请输入用户名" id="uname" onblur="check()"/>
<span id="cn">不为空</span>
</p>
<p>密码<input type="password" placeholder="请输入密码" id="upd" onblur="checkpassword()"/>
<span id="cp">不为空</span>
</p>
<p>确认密码<input type="password" placeholder="请重复输入密码" id="reupd" onblur="checkrepd()"/>
<span id="recp">确认密码</span>