if(!(/[\u4e00-\u9fa5]+/).test(document.creator.stuName.value)){
alert("只能输入汉字!");
txt = document.getElementById("stuName");
txt.value="";
txt.focus();
}
当前位置:主页 >> JavaScript >> 正文
只限输入中文的js代码
阅读:3452 输入:2014-07-08 06:32:35
if(!(/[\u4e00-\u9fa5]+/).test(document.creator.stuName.value)){
alert("只能输入汉字!");
txt = document.getElementById("stuName");
txt.value="";
txt.focus();
}