The JavaScript form verifies whether it is Chinese and determines whether an input is Chinese, which is implemented through regular expressions.
// 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