1.使用JS给登陆页面添加验证要求 用户名为che密码为123才可以登陆成功...
发布网友
发布时间:2022-04-26 10:00
我来回答
共1个回答
热心网友
时间:2022-05-17 19:38
// 文本输入长度*
function checkLength(obj,minlength,maxlength) {
var len = obj.value.length + (obj.value.match(/[^\x00-\xff]/g) || "").length;
if(typeof(maxlength) != "undefined"){
if (len > maxlength || len < minlength) {
alert("用户名长度控制在 3 - 12字节");
}
}else{
if(len < minlength){
alert("密码不少于6位");
}
}
}
function submit() {
var psw = document.getElementById("psw").value;
var username = document.getElementById("psw").value;
if(psw!="123" && username!="che"){
alert("用户名或密码错误");
}else{
登陆
}
}
<input id="psw" type="password" onblur="checkLength(this,6); value=value.replace(/[^a-z\d]/ig,'')" />
<input id="username" type="text" onblur="checkLength(this,3,16); " />