the following example use the javascript regular express to validate the value where Chinese charecter is not allow.
<script language=javascript>
function checkChinese(){
var re = /[u4E00-u9FA0]+/;
if (re.test(form1.tjiccode.value))
{
alert(”不允许输入中文!”);
return false;
}
}
Popularity: 1% [?]
Related posts:
- Disabled certain key to be entered using javascript There is always the good way to prevent and verify...
- Trim a string in Javascript Trim is a good features when you try to...
- Attaching event in both MSIE and FF with Javascript Most of the developer who working in MS platform will...
- URL Hidden Tricks to check page’s last update Check the page’s last update date Go to any web...



Comments
No Responses to “Form validation not allow chinese cheractor”