Javascript Validation for email (regular expression) English translation _ Regular expressions

Source: Internet
Author: User
Try testing the following form with valid and invalid email addresses. The
Code uses JavaScript to match the users input with a regular expression.
Function code:
Copy Code code as follows:

function Validate (Form_id,email) {
var reg =/^ ([a-za-z0-9_\-\.]) +\@ ([a-za-z0-9_\-\.]) +\. ([a-za-z]{2,4}) $/;
var address = Document.forms[form_id].elements[email].value;
if (reg.test (address) = = False) {
Alert (' Invalid Email address ');
return false;
}
}

In the forms ' onsubmit ' code call Javascript:return Validate (' form_id ', ' email_field_id ')
How to use:
Copy Code code as follows:

<form id= "form_id" method= "post" action= "action.php" onsubmit= "Javascript:return Validate" (' form_id ', ' email '); " >
<input type= "text" id= "email" name= "email"/>
<input type= "Submit" value= "Submit"/>
</form>

Should not rely purely on client side validation on your website/web, if the user application JavaScript has D this is not work. Always validate on the server.
from:http://www.white-hat-web-design.co.uk/blog/javascript-validation/
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.