<html> <head> <title></title> <script> function CheckForm(){ if (CheckUserName() && CheckPassword() && CheckConfirmedPassword()){ return true; } else{ return false; } } function CheckUserName(){ if ($("#UserName").val() == ""){ $("#ErrorMessage1").html("用户名不能为空!") //$("#UserName").focus(); return false; } else{ $("#ErrorMessage1").html("") return true; } } function CheckPassword() { if ($("#Password").val() == "") { $("#ErrorMessage2").html("密码不能为空!") //$("#Password").focus(); return false; } else { $("#ErrorMessage2").html("") return true; } } function CheckConfirmedPassword() { CheckPassword(); if ($("#ConfirmedPassword").val() != $("#Password").val()) { $("#ErrorMessage3").html("密码不一致") //$("#ConfirmedPassword").focus(); return false; } else { $("#ErrorMessage3").html("") return true; } } </script> </head> <body> <h1>注册页面</h1> @using (Html.BeginForm("SignUp", "Part2", FormMethod.Post ,new{id="MyForm", name="MyForm"})) { <p>用户名:@Html.TextBox("UserName","",new{onblur="CheckUserName()"}) <span id="ErrorMessage1" style="color:red"></span></p> <p>密码:@Html.TextBox("Password","",new{onblur="CheckPassword()"}) <span id="ErrorMessage2" style="color:red"></span></p> <p>重复密码:@Html.TextBox("ConfirmedPassword","",new{onblur="CheckConfirmedPassword()"}) <span id="ErrorMessage3" style="color:red"></span></p> <input type="submit" class="btn-success" onclick="CheckForm()" /> } </body> </html>
时间: 2023-07-24 21:13:28 浏览: 179
这是一段 HTML 代码,包含一个注册页面的表单。表单中包含了三个输入框,分别是用户名、密码和确认密码,以及一个提交按钮。在输入框失去焦点时,会调用 JavaScript 函数进行校验,并在下方显示错误信息。同时,点击提交按钮时,也会调用 JavaScript 函数进行校验,如果校验通过,则将表单提交到名为 "SignUp" 的控制器的 "Part2" 方法中进行处理。
相关问题
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>leon</title> <style> * { margin: 0; padding: 0; } form { width: 500px; padding: 20px; border: 10px solid pink; border-radius: 15px; margin: 50px auto; display: flex; flex-direction: column; } form > label { height: 50px; position: relative; } form > label > span { position: absolute; left: 20px; bottom: 5px; color: red; display: none; } form > label > span.active { display: block; } </style> </head> <body> <form action=""> <label for=""> 用户名 : <input class="username" type="text"> <span>用户名必须字母开头6-12位, 请重新填写 ^^</span> </label> <label for=""> 密 码 : <input class="password" type="text"> <span>密码必须6-12位, 请重新填写 ^^</span> </label> <label for=""> 手机号 : <input class="phone" type="text"> <span>手机号不符合规则, 请重新填写 ^^</span> </label> <label for=""> 昵 称 : <input class="nickname" type="text"> <span>昵称必须3~5位中文, 请重新填写 ^^</span> </label> <button>提交</button> </form> </body> </html> <script src="./index.js" type="module"></script>请编写js代码实现功能,并满足在输入时验证不正确显示active样式
好的,您可以尝试使用以下 JavaScript 代码实现您的功能需求:
```js
const form = document.querySelector('form');
const usernameInput = document.querySelector('.username');
const passwordInput = document.querySelector('.password');
const phoneInput = document.querySelector('.phone');
const nicknameInput = document.querySelector('.nickname');
const usernameSpan = document.querySelector('.username + span');
const passwordSpan = document.querySelector('.password + span');
const phoneSpan = document.querySelector('.phone + span');
const nicknameSpan = document.querySelector('.nickname + span');
function checkUsername() {
const username = usernameInput.value.trim();
const regex = /^[a-zA-Z]\w{5,11}$/;
if (!regex.test(username)) {
usernameSpan.classList.add('active');
return false;
} else {
usernameSpan.classList.remove('active');
return true;
}
}
function checkPassword() {
const password = passwordInput.value.trim();
if (password.length < 6 || password.length > 12) {
passwordSpan.classList.add('active');
return false;
} else {
passwordSpan.classList.remove('active');
return true;
}
}
function checkPhone() {
const phone = phoneInput.value.trim();
const regex = /^1[3-9]\d{9}$/;
if (!regex.test(phone)) {
phoneSpan.classList.add('active');
return false;
} else {
phoneSpan.classList.remove('active');
return true;
}
}
function checkNickname() {
const nickname = nicknameInput.value.trim();
const regex = /^[\u4e00-\u9fa5]{3,5}$/;
if (!regex.test(nickname)) {
nicknameSpan.classList.add('active');
return false;
} else {
nicknameSpan.classList.remove('active');
return true;
}
}
function checkForm() {
const isUsernameValid = checkUsername();
const isPasswordValid = checkPassword();
const isPhoneValid = checkPhone();
const isNicknameValid = checkNickname();
return isUsernameValid && isPasswordValid && isPhoneValid && isNicknameValid;
}
form.addEventListener('submit', (event) => {
event.preventDefault();
if (checkForm()) {
alert('恭喜,验证通过!');
} else {
alert('很抱歉,验证失败,请检查输入!');
}
});
usernameInput.addEventListener('input', checkUsername);
passwordInput.addEventListener('input', checkPassword);
phoneInput.addEventListener('input', checkPhone);
nicknameInput.addEventListener('input', checkNickname);
```
这段代码主要做了以下几个事情:
1. 通过 `querySelector` 方法获取表单元素和相关的输入框和提示文本元素;
2. 分别编写了 4 个验证函数,用于验证用户名、密码、手机号和昵称的格式是否符合要求,并在验证失败时添加 `active` 类名以显示提示文本;
3. 编写了一个 `checkForm` 函数,用于检查整个表单是否通过验证;
4. 在表单提交事件中,阻止默认行为,调用 `checkForm` 函数检查表单是否通过验证,并根据结果显示相应的提示信息;
5. 在输入框的输入事件中,调用相应的验证函数进行实时验证。
通过这样的代码实现,用户在输入时会实时得到验证的反馈,如果输入不合法,则会显示相应的提示文本。如果用户提交表单时,表单中有任何一个输入框不合法,则会提示用户重新检查输入。如果全部通过验证,则会提示用户验证通过。同时,不正确的输入会添加 `active` 类名来显示提示文本,让用户更加直观地了解错误原因。
解释下段代码margin: auto; } #formBox div{ margin-top: 5px; } #formBox div input{ box-sizing: border-box; padding: 5px; } </style> </head> <body bgcolor="CC999"> <div id="formBox"> <form name="myform" action="" method="get" onclick="return checkForm();"> <div> 姓名:<input type="text" name="name"><p> </div> <div> 密码:<input type="password" name="code"><p> </div> <div> 性别:<input type="radio" name="a1" value="1" onClick="a=this.value">男 <input type="radio" name="a1" value="2" onClick="a=this.value">女<p> </div> <input type="button" value="提交" onclick="checkForm();"> </form> </div> </body>
这段代码是一个简单的HTML页面,包含一个表单(form)。其中,margin: auto;的作用是使表单居中显示。#formBox div的作用是选择表单中的每个div元素,并设置它们的顶部间距为5像素。#formBox div input的作用是选择表单中每个div元素中的input元素,并将它们的盒模型设置为border-box,同时设置它们的内边距(padding)为5像素。在表单中,有姓名(name)、密码(code)和性别(a1)三个输入框。其中,性别用了两个单选按钮(radio),分别对应“男”和“女”,并且通过onClick事件绑定了一个JavaScript函数,将选择的值存储在变量a中。最后,表单中还有一个提交按钮,通过onclick事件绑定了一个名为checkForm()的JavaScript函数,用于验证表单数据的正确性。整个页面的背景颜色为CC999。
阅读全文