js判断中文

<html > 
<head > 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>中文js测试</title> 
<script>function isChn(str){ 
var reg = /^[\u4E00-\u9FA5]+$/; 
if(!reg.test(str)){ 
alert("不是中文"); 
return false; 
} 
alert("中文"); 
return true; 
} 
</script> 
</head> 
<body onload=isChn("脚本之家")>
</body> 
</html> 

posted on 2012-11-02 16:24  YangJin  阅读(168)  评论(0编辑  收藏  举报