<head>
<title>验证只能为中文</title>
<script language="javascript">
function check(){
var t = document.forms[0].elements["text1"];
if (t.value != t.value.replace(/[^\u4E00-\u9FA5]/g,'')){
alert("不全是中文");
}
}
</script>
</head>
<body>
<form />
</form>
</body>
</html>