|
热门文章 |
|
|
|
相关文章 |
|
没有相关文章 |
|
|
检测是否全部为中文 |
来源:中国站长天空 更新时间:2009/12/3 1:39:22 阅读次数: 我要投稿 |
|
<html> <head> <title>检测是否全部为中文</title> <meta http-equiv="content-Type" content="text/html;charset=gb2312"> </head> <body> <!--把下面代码加到<body>与</body>之间--> <script language="javascript"> function check() { var userName=document.getElementById("userName").value; if(userName=="") { alert("不能为空!") document.getElementById("userName").focus(); return false; } obj=userName.match(/^[\u4e00-\u9fa5]*$/g); if(obj==null) { alert("必须为中文!") document.getElementById("userName").value=""; document.getElementById("userName").focus(); return false; } else { alert("全部为中文!") } } </script> 检测是否全部为中文:<input id="userName" type="text"> <input type="button" onclick="check()" value="检测"> </body> </html> |
|
上一篇文章: 点击文字选中checkbox选框下一篇文章: 检测文件的扩展名 |
|
|