Common JS Verification Email verify Chinese English and digital regular

Source: Internet
Author: User

//Judge email
 

function Isemail () {
  var RT = new Array ();
  rt[0] = "\w+ ([-+.] \w+) *@\w+ ([-.] \w+) *\.\w+ ([-.] \w+) * ";
  rt[1] = "should be the correct e-mail format!";
  
  return RT;
 }
 
 //can only enter Chinese
 function Onlyzh () {
  var RT = new Array ();
  rt[0] = "^[u0391-uffe5]+$";
  rt[1] = "should be entered in Chinese!";
  return RT;
 }
 
 //can only enter English
 function Onlyen () {
  var RT = new Array ();
  rt[0] = "^[a-za-z]+$";
  rt[1] = "can only input English!";
  return RT;
 }
 
 function enornum () {
  var RT = new Array ();
  rt[0] = "^[a-za-z0-9]+$";
  rt[1] = "Only English and number can be entered, and no spaces!";
  
  return RT;
 }
</script>
Related Article

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.