//函式名:chksafe
//功能介紹:檢查是否含有"'",'//',"/"
//引數說明:要檢查的字串
//返回值:0:是 1:不是
function chksafe(a)}}
return 0;
}//opt1 小數 opt2 負數
//當opt2為1時檢查num是否是負數
//當opt1為1時檢查num是否是小數
//返回1是正確的,0是錯誤的
function chknbr(num,opt1,opt2)
//當最後一位為.時出錯
if (num.charat(i-1)=='.')
for (j=0;j1)
if (num.charat(j)<'0' || num.charat(j)>'9' )}}
return 1;
}function chkemail(a)}}
return 0;
}//opt1 小數 opt2 負數
//當opt2為1時檢查num是否是負數
//當opt1為1時檢查num是否是小數
//返回1是正確的,0是錯誤的
function chknbr(num,opt1,opt2)
//當最後一位為.時出錯
if (num.charat(i-1)=='.')
for (j=0;j1)
if (num.charat(j)<'0' || num.charat(j)>'9' )}}
return 1;
}//函式名:chkdate
//功能介紹:檢查是否為日期
//引數說明:要檢查的字串
//返回值:0:不是日期 1:是日期
function chkdate(datestr)
if ((status==0) && (datestr.charat(i)!='-'))
if ((status==1) && (datestr.charat(i)!='-'))
if ((status==2) && (datestr.charat(i)!='-'))
}year=new string (tmpy);
month=new string (tmpm);
day=new string (tmpd)
//tempdate= new string (year+month+day);
//alert(tempdate);
if ((tmpy.length!=4) || (tmpm.length>2) || (tmpd.length>2))
if (!((1<=month) && (12>=month) && (31>=day) && (1<=day)) )
if (!((year % 4)==0) && (month==2) && (day==29))
if ((month<=7) && ((month % 2)==0) && (day>=31))
if ((month>=8) && ((month % 2)==1) && (day>=31))
if ((month==2) && (day==30))
return 1;
}function chkdate(datestr)
if ((status==0) && (datestr.charat(i)!='-'))
if ((status==1) && (datestr.charat(i)!='-'))
if ((status==2) && (datestr.charat(i)!='-'))
}year=new string (tmpy);
month=new string (tmpm);
day=new string (tmpd)
//tempdate= new string (year+month+day);
//alert(tempdate);
if ((tmpy.length!=4) || (tmpm.length>2) || (tmpd.length>2))
if (!((1<=month) && (12>=month) && (31>=day) && (1<=day)) )
if (!((year % 4)==0) && (month==2) && (day==29))
if ((month<=7) && ((month % 2)==0) && (day>=31))
if ((month>=8) && ((month % 2)==1) && (day>=31))
if ((month==2) && (day==30))
return 1;
}//函式名:fucpwdchk
//功能介紹:檢查是否含有非數字或字母
//引數說明:要檢查的字串
//返回值:0:含有 1:全部為數字或字母
function fucpwdchk(str)
}if (strsource.indexof(ch)==-1)
else }
function jtrim(str)
while (str.charat(str.length-1)==" ")
return(str);
}function fucpwdchk(str)
}if (strsource.indexof(ch)==-1)
else }
function jtrim(str)
while (str.charat(str.length-1)==" ")
return(str);
}//函式名:fucchecknum
//功能介紹:檢查是否為數字
//引數說明:要檢查的數字
//返回值:1為是數字,0為不是數字
function fucchecknum(num)
}//說明是數字
return 1;
}//函式名:fucchecktel
//功能介紹:檢查是否為**號碼
//引數說明:要檢查的字串
//返回值:1為是合法,0為不合法
function fucchecktel(tel)
return sum;
}
js 幾種常用的表單輸入判斷
函式名 chksafe 功能介紹 檢查是否含有 引數說明 要檢查的字串 返回值 0 是 1 不是 function chksafe a return sum function fucpwdchk str if strsource.indexof ch 1 else function jtrim st...
幾種常用的JavaScript表單輸入判斷
函式名 chksafe 功能介紹 檢查是否含有 引數說明 要檢查的字串 返回值 0 是 1 不是 function chksafe a return 0 opt1 小數 opt2 負數 當opt2為1時檢查num是否是負數 當opt1為1時檢查num是否是小數 返回1是正確的,0是錯誤的 funct...
JavaScript 幾種常用的表單輸入判斷
函式名 chksafe 功能介紹 檢查是否含有 引數說明 要檢查的字串 返回值 0 是 1 不是 function chksafe a return 0 opt1 小數 opt2 負數 當opt2為1時檢查num是否是負數 當opt1為1時檢查num是否是小數 返回1是正確的,0是錯誤的 funct...