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

Verify whether the form is Chinese through regular expressions_javascript skills

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-16 16:59:41
Original
1373 people have browsed it

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;
}
Related labels:
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template