注册页面制作(1)注册输入内容包括:用户名(昵称)、登录密码、密码确认、手机号码、邮箱;(2)光标离开文本输入框后自动对输入内容进行合法性验证(提示:函数或正则表达式),同时需要对密码和密码确认内容是否一致进行判断;(3)表单域含"注册"和"取消"按钮,其中点击"取消"情况文本框内容,点击"注册"不跳转。(4)设置表单属性参数时,应考虑数据的保密性和数据量的限制。(5)用户名要求为:字母开头,允许5~16字节,允许字母、数字和下划线;(6)密码要求:由数字、字母、下划线组成,6~18字节;
时间: 2024-03-17 13:46:28 浏览: 129
好的,以下是一个简单的注册页面制作示例:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册页面</title>
<style>
#form-container {
width: 400px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
label {
display: block;
margin-bottom: 10px;
}
input[type=text], input[type=password], input[type=tel], input[type=email] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type=submit], input[type=button] {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type=submit]:hover, input[type=button]:hover {
background-color: #0062cc;
}
.error {
color: red;
margin-top: 5px;
}
</style>
</head>
<body>
<div id="form-container">
<h2>注册页面</h2>
<form id="register-form" action="#" method="post">
<label for="username">用户名(昵称):</label>
<input type="text" id="username" name="username" required>
<span id="username-error" class="error"></span>
<label for="password">登录密码:</label>
<input type="password" id="password" name="password" required>
<span id="password-error" class="error"></span>
<label for="confirm-password">确认密码:</label>
<input type="password" id="confirm-password" name="confirm-password" required>
<span id="confirm-password-error" class="error"></span>
<label for="phone">手机号码:</label>
<input type="tel" id="phone" name="phone" required>
<span id="phone-error" class="error"></span>
<label for="email">邮箱:</label>
<input type="email" id="email" name="email" required>
<span id="email-error" class="error"></span>
<input type="button" value="取消" onclick="resetForm()">
<input type="submit" value="注册" onclick="validateForm()">
</form>
</div>
<script>
function validateForm() {
let username = document.getElementById('username').value;
let password = document.getElementById('password').value;
let confirmPassword = document.getElementById('confirm-password').value;
let phone = document.getElementById('phone').value;
let email = document.getElementById('email').value;
let usernamePattern = /^[a-zA-Z][a-zA-Z0-9_]{4,15}$/;
let passwordPattern = /^[a-zA-Z0-9_]{6,18}$/;
let phonePattern = /^1[3456789]\d{9}$/;
let emailPattern = /^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/;
let isValid = true;
if (!usernamePattern.test(username)) {
document.getElementById('username-error').innerHTML = '用户名格式不正确(字母开头,允许5~16字节,允许字母、数字和下划线)';
isValid = false;
} else {
document.getElementById('username-error').innerHTML = '';
}
if (!passwordPattern.test(password)) {
document.getElementById('password-error').innerHTML = '密码格式不正确(由数字、字母、下划线组成,6~18字节)';
isValid = false;
} else {
document.getElementById('password-error').innerHTML = '';
}
if (password !== confirmPassword) {
document.getElementById('confirm-password-error').innerHTML = '两次密码输入不一致';
isValid = false;
} else {
document.getElementById('confirm-password-error').innerHTML = '';
}
if (!phonePattern.test(phone)) {
document.getElementById('phone-error').innerHTML = '手机号码格式不正确';
isValid = false;
} else {
document.getElementById('phone-error').innerHTML = '';
}
if (!emailPattern.test(email)) {
document.getElementById('email-error').innerHTML = '邮箱格式不正确';
isValid = false;
} else {
document.getElementById('email-error').innerHTML = '';
}
return isValid;
}
function resetForm() {
document.getElementById('register-form').reset();
}
</script>
</body>
</html>
```
在这个示例中,我们使用了 HTML、CSS 和 JavaScript 来实现注册页面的制作,并添加了输入内容的合法性验证和取消、注册按钮的处理逻辑。具体实现如下:
1. 在 HTML 中定义表单元素和按钮,并使用 CSS 样式对其进行美化。
2. 在 JavaScript 中定义 `validateForm` 和 `resetForm` 函数来处理表单的验证和重置操作。
3. 在 `validateForm` 函数中,我们获取表单元素的值,并使用正则表达式来对其进行合法性验证。如果某个输入内容不符合要求,我们就在页面上显示一个错误提示信息,并返回 `false` 以阻止表单提交。否则,我们就清空错误提示信息并返回 `true`,以允许表单提交。
4. 在 `resetForm` 函数中,我们使用 `reset()` 方法来清空表单的内容。
你可以根据自己的需求来修改表单的样式、验证规则和处理逻辑等内容,以实现更加完善的注册页面。
阅读全文