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:
- 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”