cleey
望着那一丝海线,若隐若现。落日下的海霞,数不尽的美,看不完的醉
js验证汉字

使用js验证汉字,只允许输入汉字:

var str=document.getElementById("name").value; 
var reg = /^[\u4e00-\u9fa5]+$/i; 
if (!reg.test(str)) 
{ 
alert("请输入中文名字!"); 
document.form1.name.focus(); 
return false; 
} 
return true; 
<< 上一篇 CSS去除表格间距 IPMI Could not open device 下一篇 >>
文章标签
随意 | Created At 2014 By William Clinton | 蜀ICP备14002619号-4 |