Javascript check for all Chinese _ javascript skills

Source: Internet
Author: User
Judge whether all the scripts are Chinese. javascript checks Chinese regular expressions.
Js check if all is Chinese

<Html xmlns = "http://www.w3.org/1999/xhtml" xml: lang = "zh" lang = "zh" dir = "ltr"> <pead profile = "http://www.w3.org/2000/08/w3c-synd/#"> <meta http-equiv = "Content-Type" content = "text/ html; charset = gb2312 "/> <title> Chinese JavaScript test </title> script function isChn (str) {var reg =/^ [\ u4E00-\ u9FA5] + $/; if (! Reg. test (str) {alert ("not Chinese"); return false;} alert ("Chinese"); return true ;} script </pead> <body onload = isChn ("people")> </body> </ptml>
[Ctrl + A select all Note: If you need to introduce external Js, You need to refresh it to execute]


Js determines whether the input character is a Chinese character

The Code is as follows:


Function isChina (s) // determines whether the character is a Chinese character
{
Var patrn =/[\ u4E00-\ u9FA5] | [\ uFE30-\ uFFA0]/gi;
If (! Patrn.exe c (s ))
{
Return false;
} Else {
Return true;
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.