发表时间:2014-09-05来源:网络
来看看其他验证是不是很简单啦!
<2>昵称验证
Js代码
[javascript]
function checkNickname(Nickname)
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("error2").innerHTML="<font color=red size=2px>*</font>"; //复位
if(Nickname.length==0)
{
document.getElementById("error2").innerHTML="<font color=red size=2px>*昵称不能为空!</font>";
}
else
{
if(Nickname.length>16)
{
document.getElementById("error2").innerHTML="<font color=red size=2px>*昵称不要超过16个字符!</font>";
}
else
{
document.getElementById("error2").innerHTML="<font color=green size=2px>*昵称可用!</font>";
}
}
}
}
xmlhttp.open("GET","index.php",true);
xmlhttp.send(); //注意这里与邮箱验证的不同
}
function checkNickname(Nickname)
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("error2").innerHTML="<font color=red size=2px>*</font>"; //复位
if(Nickname.length==0)
{
document.getElementById("error2").innerHTML="<font color=red size=2px>*昵称不能为空!</font>";
}
else
{
if(Nickname.length>16)
{
document.getElementById("error2").innerHTML="<font color=red size=2px>*昵称不要超过16个字符!</font>";
}
else
{
document.getElementById("error2").innerHTML="<font color=green size=2px>*昵称可用!</font>";
}
}
}
}
xmlhttp.open("GET","index.php",true);
xmlhttp.send(); //注意这里与邮箱验证的不同
}
<3>密码验证
Js代码
[javascript]
function checkPwd1(password1)
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{ document.getElementById("error3").innerHTML="<font color=red size=2px>*</font>";
document.getElementById("password2").value="";
document.getElementById("error4").innerHTML="<font color=red size=2px>*</font>";
if(password1.length==0)
{
document.getElementById("error3").innerHTML="<font color=red size=2px>*密码不能为空!</font>";
}
else
{
if(password1.length<6||password1.length>16)
{
document.getElementById("error3").innerHTML="<font color=red size=2px>*密码为6-16个字符!</font>";
}
else
{
var reg=/[a-zA-Z0-9]/; //在js中使用正则表达式 www.zhishiwu.com
if(reg.test(password1))
{
document.getElementById("error3").innerHTML="<font color=green size=2px>*密码可用!</font>";
}
else
{
document.getElementById("error3").innerHTML="<font color=red size=2px>*密码不可用!</font>";
}
}
}
}
}
xmlhttp.open("GET","index.php",true);
xmlhttp.send();
}
function checkPwd1(password1)
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{ document.getElementById("error3").innerHTML="<font color=red size=2px>*</font>";
document.getElementById("password2").value="";
document.getElementById("error4").innerHTML="<font color=red size=2px>*</font>";
if(password1.length==0)
{
document.getElementById("error3").innerHTML="<font color=red size=2px>*密码不能为空!</font>";
}
else
{
if(password1.length<6||password1.length>16)
{
document.getElementById("error3").innerHTML="<font color=red size=2px>*密码为6-16个字符!</font>";
}
else
{
var reg=/[a-zA-Z0-9]/; //在js中使用正则表达式
if(reg.test(password1))
{
document.getElementById("error3").innerHTML="<font color=green size=2px>*密码可用!</font>";
}
else
{
document.getElementById("error3").innerHTML="<font color=red size=2px>*密码不可用!</font>";
}
}
}
}
}
xmlhttp.open("GET","index.php",true);
xmlhttp.send();
}
<4>重复密码验证
Js代码
[javascript]
function checkPwd2(password2)
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{ document.getElementById("error4").innerHTML="<font color=red size=2px>*</font>";
if(password2.length==0)
{
document.getElementById("error4").innerHTML="<font color=red size=2px>*请确认密码!</font>";
}
else
{
if(password2!=document.getElementById("password1").value)
{
document.getElementById("error4").innerHTML="<font color=red size=2px>*两次密码输入不一致!</font>";
}
else
{
document.getElementById("error4").innerHTML="<font color=green size=2px>*密码输入一致!</font>";
}
}
}
}
xmlhttp.open("GET","index.php",true);
xmlhttp.send();
}
function checkPwd2(password2)
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{ document.getElementById("error4").innerHTML="<font color=red size=2px>*</font>";
if(password2.length==0)
{
document.getElementById("error4").innerHTML="<font color=red size=2px>*请确认密码!</font>";
}
else
{
if(password2!=document.getElementById("password1").value)
{
document.getElementById("error4").innerHTML="<font color=red size=2px>*两次密码输入不一致!</font>";
}
else
{
document.getElementById("error4").innerHTML="<font color=green size=2px>*密码输入一致!</font>";
}
}
}
}
xmlhttp.open("GET","index.php",true);
xmlhttp.send();
}
怎么样,挺简单的吧!(未完待续)
摘自 wyzhangchengjin123
CI框架连接数据库配置操作以及多数据库操作
asp 简单读取数据表并列出来 ASP如何快速从数据库读取大量数据
C语言关键字及其解释介绍 C语言32个关键字详解
C语言中sizeof是什么意思 c语言里sizeof怎样用法详解
PHP中的魔术方法 :__construct, __destruct , __call, __callStatic,__get, __set, __isset, __unset , __sleep,
将视频设置为Android手机开机动画的教程
PHP中的(++i)前缀自增 和 (i++)后缀自增
最简单的asp登陆界面代码 asp登陆界面源代码详细介绍
常用dos命令及语法
PHP中include和require区别之我见
兴鼎健康平台下载v3.3.3 安卓官方版
42.12MB |生活服务
快付Pay下载v1.1.31 最新版
20.04MB |商务办公
花月鲜花app下载v2.2.1 安卓官方版
8.63MB |生活服务
一刻talksapp下载v9.5.8 安卓最新版
75.83MB |学习教育
滨海人才网招聘官方版下载v2.1.6 安卓最新版
66.78MB |生活服务
如祺出行企业版app下载v3.6.0 安卓最新版
65.87MB |生活服务
朗拓智慧外勤软件下载v9.4.0 安卓官方版
36.01MB |商务办公
格之格打印app官方正版(G&G Print)下载v1.1.25 安卓版
165.26MB |系统工具
2014-09-05
2022-03-20
2022-03-21
2022-03-24
2014-09-05
2014-09-05
2015-07-05
2014-09-05
2022-03-21
2014-09-05
绝望3黑暗地心中文版(hopeless3)下载v1.3.9 安卓汉化版
其它手游绝望3黑暗地球中文版(hopeless3)下载v1.3.9 安卓版
其它手游绳索英雄骷髅王手游下载v1.1.5 安卓版
其它手游战场模拟官方版下载v1.49.3 安卓最新版
其它手游僵尸战争战斗幸存者游戏下载v6.7 安卓版
其它手游糖果工厂宝宝巴士最新版下载v9.99.00.10 安卓版
其它手游糖果工厂游戏免费版下载v9.99.00.10 安卓手机版
其它手游制作谷游戏下载v1.3.15 安卓版
其它手游疯狂大酒店中文版下载v4.17.5.19 安卓最新版
其它手游