Home  >  Article  >  Web Front-end  >  Verify whether the form is Chinese through regular expressions_javascript skills

Verify whether the form is Chinese through regular expressions_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:59:411312browse

The JavaScript form verifies whether it is Chinese and determines whether an input is Chinese, which is implemented through regular expressions.

Copy code The code is as follows:

// Check whether it is Chinese
function isChn( str){
var reg = /^[u4E00-u9FA5] $/;
if(!reg.test(str)){
return false;
}
return true;
}
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