写了个服务器端判断的,测试通过。
〈form name="form1" method="post" action="test.asp?action=submit"〉
〈input type="text" name="textfield"〉
〈input type="submit" name="Submit" value="提交"〉
〈/form〉
〈%If Request("action")="submit" Then
chk = CheckExp(Request("textfield"))
If Not chk Then
Response.Write("〈script language=javascript〉alert(""非字母或空格"")〈/script〉")
Response.End()
End If
End If%〉
〈%
Function CheckExp(strng)
Dim regEx
Set regEx = New RegExp
regEx.Pattern = "^[a-z|"" ""]+$"
regEx.IgnoreCase = True
regEx.Global = True
CheckExp = regEx.Test(strng)
End Function
%〉
自己替换一下括号,原代码贴上来就连在一起了,很乱。