function checkuname() { var name = $("#username").val(); if(name==""||(name.length<3||name.length>12)){ $("#checku").html("用户账号不能为空且长度在3~12位之间!"); $("input[id=username]").focus(); } else { $("#checku").html(""); $.ajax({ url : "checkUname.do", type : "post", data : "uname=" + name, dataType : "json", success:function(result){ if(result.info=="ng"){ $("#checku").html("用户名存在,请更换!"); $("input[id=username]").html(""); return false; }else{ $("#checku").html("可以用"); return true; } }, error:function(){ alert("请求失败!"); return false; } }); } } function checkpwd(){ var pwd=$("#txtPwd").val(); if(pwd==""||pwd.length<6||pwd.length>12){ $("#prompt_pwd").html("密码不能为空且长度在6~12位之间!"); $("input[id=txtPwd]").html(""); $("input[id=txtPwd]").focus(); return false; }else { $("#prompt_pwd").html("密码格式正确!"); return true;} } function checkpwdc(){ var pwd=$("#txtPwd").val(); var pwdc=$("#txtConfirmPwd").val(); if(pwdc==""||pwdc!=pwd){ $("#prompt_confirmpwd").html("两次密码要一致 !"); $("input[id=txtConfirmPwd]"); // $("input[name=passwordc]").focus(); return false; }else{ $("#prompt_confirmpwd").html("密码一致 !"); return true;} } function checktel(){ var tel=$("#txtPhone").val(); var regtel=/^(13|15|18|)\d{9}$/; if(tel==""||!regtel.test(tel)){ $("#prompt_phone").html("电话号码不能为空,且以13,15,17,18开头的11位"); $("input[id=txtPhone]").html(""); $("input[id=txtPhone]").focus(); return false; }else{ $("#prompt_phone").html("电话号码格式正确!"); return true; } } function checkname1(){ var uname=$("#txtName1").val(); if(uname==""||uname.length<2){ $("#prompt_name1").html("不能为空且长度在2位以上!"); $("input[id=txtName1]").html(""); $("input[id=txtName1]").focus(); return false; }else{ $("#prompt_name1").html("ok"); return true; }} function
时间: 2023-07-15 19:10:12 浏览: 139
验证用户名是否存在
It seems like the code you provided is incomplete and cut off. Can you please provide the full code or provide more context on what you would like me to do?
阅读全文