Javascript tips-js tutorial

Source: Internet
Author: User
Js to determine whether the text box is empty. For more information, see. The Code is as follows:


// The user name is not empty for verification
Function checkUserName (){
Var name = document.myform.txt User; // here I think: name represents the text box of txtUser
If (name. value. length = 0 ){
Alert ("Enter the user name ");
Name. focus ();
Return false;
} Else {return true ;}
}
// Non-empty password verification + Validation
Function checkPass (){
Var passmediadocument.myform.txt Pass;
Var rpass#document.myform.txt RPass;
If (pass. value = ""){
Alert ("the password cannot be blank ");
Pass. focus ();
Return false;
} Else if (pass. value. length <4 | pass. value. length> 16 ){
Alert ("the password must be 4-16 characters long ");
Pass. select ();
Return false;
} Else if (rpass. value! = Pass. value ){
Alert ("confirming that the password is inconsistent with the password ");
Rpass. select ();
Return false;
} Else {return true ;}
}

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.