检测用户名必须为汉子的代码
检测用户名必须为汉子的代码怎么写?
function fucCheckSTR(NUM)
{
var i,j,strTemp;
strTemp="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
if ( NUM.length== 0)
return 0
for (i=0;i<NUM.length;i++)
{
j=strTemp.indexOf(NUM.charAt(i));
if (j==-1)
{
return 0;
}
}
return 1;
}
function checktext(text)
{
allValid = true;
for (i = 0; i < text.length; i++)
{
if (text.charAt(i) != " ")
{
allValid = false;
break;
}
}
return allValid;
}
这个代码是检测为英文或数字.
function checkchinese(char)
if asc(char)<0 then
alert("起碼不是字母 數字 操作副")
end if
end function
不行哦