Ajax does not need to update the application code when registering a user name

Source: Internet
Author: User

VaR XMLHTTP;
Uname () // when the user name loses focus
{
If (all. uname. = "")
{
All. l1.innerhtml = "cannot be blank! ";
SetTimeout ("close (1)", 1500 );
Return;
}
Else
{
XMLHTTP = new activexobject ("Microsoft. XMLHTTP ");
XMLHTTP. onreadystatechange = deal; // callback function
VaR url = "Ajax. aspx? User = '"+ ALL. uname. +"' "; // the user name to be checked.
XMLHTTP. Open ("get", URL, true); // submit the form to the URL in get mode, and start one step of processing.
XMLHTTP. Send (null); // send
}
}
Deal ()
{
// Alert (XMLHTTP. readystate + "_" + XMLHTTP. status );
If (XMLHTTP. readystate! = 4)
{Return ;}

If (XMLHTTP. status! = 200) // if it is equal to 500, it is an SQL statement or database error.
{Return ;}
//

VaR num = XMLHTTP. responsetext; // receives the message sent by the server.
// Alert (Num );
All. l1.innertext = "";
If (Num> 0)
{
All. l1.innertext = "this user name has been used! ";
}
Else
{
All. l1.innertext = "√ ";
}

}

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.