Home  >  Article  >  Web Front-end  >  js simple regular method to verify Chinese characters English and underline

js simple regular method to verify Chinese characters English and underline

高洛峰
高洛峰Original
2016-12-03 16:44:011256browse

The example in this article describes the method of using simple regular js to verify the English and underline of Chinese characters. Share it with everyone for your reference, the details are as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>验证汉字</title>
</head>
<body>
<script type="text/javascript">
function reg_check_val(nickname){
  var regex = new RegExp("^([\u4E00-\uFA29]|[\uE7C7-\uE7F3]|[a-zA-Z0-9_]){1,10}$"); 
  var res = regex.test(nickname);
  if(res==true){
    alert("包含中英文字母或下划线");
    return true;
  }else{
    alert("不包含中英文字母或下划线");
    return false;
  }
}
reg_check_val(&#39;php中文网&#39;);
</script>
</body>
</html>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn