2016-04-05 Java Learning Note-validation

Source: Internet
Author: User

<!doctype html>
<meta charset= "UTF-8" >
<meta name= "Generator" content= "editplus®" >
<meta name= "Author" content= "" >
<meta name= "Keywords" content= "" >
<meta name= "Description" content= "" >
<title>javascript Note 2</title>
<script type= "Text/javascript" >
Validation: Method 1
function Email () {
var Email=document.getelementbyid ("email"). Value;
if (email== "" | | Email==null) {
Alert ("Email cannot be empty!") ");

}
return false;
}

Validation: Method 2
function validate_required (field,alerttxt) {
With (field) {
if (value==null| | value== "") {
alert (alerttxt);
return false;
}else {
return true;
}
}
}

function Validate_form (thisform) {
With (Thisform) {
if (validate_required email, "Email must be filled out!") ==false) {
Email.focus ();
return false;
}
}
}

</script>
<body>
<!--validation: Method 1-->
<form action= "#" Onsubmit=email () method= "POST" >
Email:<input type= "text" id= "email"/>
<input type= "Submit" value= "Submission"/>
</form>
<!--validation: Method 2-->
<form action= "main.html" onsubmit= "return Validate_form (This)" method= "POST" >
Email: <input type= "text" name= "email" size= ">"
<input type= "Submit" value= "Submit" >
</form>
</body>

2016-04-05 Java Learning Note-validation

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.