[点晴永久免费OA]JS/ASP代码只允许输入数字英文禁止中文和特殊字符
当前位置:点晴教程→点晴OA办公管理信息系统
→『 经验分享&问题答疑 』
Javascript版:
function checknumabs(cont){
var c = new RegExp();
c=/^[\.\-A-Za-z0-9]+$/;
if(!c.test(cont)){return true;}
}
if(checknumabs(str)){alert ("只允许使用“.”、“-”、“英文字母”、“数字”,不允许使用其他任何字符!");}
ASP版:
function isnaw(tempStr)
'判断是否只有字母和数字和.和-
isnaw=true
for temp_no_i=1 to len(tempStr)
tempStrWord=mid(tempStr,temp_no_i,1)
AscVal=Asc(tempStrWord)
if (AscVal<45 or AscVal>46) and (AscVal<48 or AscVal>57) and (AscVal<65 or AscVal>90) and (AscVal<97 or AscVal>122) then
isnaw=false
exit for
end if
next
end function
if isnaw(str)=false then htmend("提交失败:只支持使用“a-zA-Z0-9.-”,不允许使用中文或其他字符,请修正!") 该文章在 2022/6/7 23:04:31 编辑过 |
关键字查询
相关文章
正在查询... |