Native Ajax framework

Source: Internet
Author: User

<! Doctype HTML>
<HTML>
<Head>
<Title> Ajax framework </title>
<Meta charset = "UTF-8">
<SCRIPT type = "text/JavaScript">
Function Ajax (URL, success, error ){
If (window. XMLHttpRequest ){
VaR oajax = new XMLHttpRequest ();
}
Else {
VaR oajax = new activexobject ('Microsoft. xmlhttp ');
} // Create an Ajax object that is compatible with IE6 and does not support XMLHttpRequest
Oajax. Open ('post', URL, true); // connect to open (method, file name, asynchronous transmission (true) synchronous transmission (false)
Oajax. Send (); // send the request
// Receive results
Oajax. onreadystatechange = function (){
If (oajax. readystate = 4 ){
// Whether the task is completed
If (oajax. Status> = 200 & oajax. Status <300 | oajax. Status = 304 ){
// The resolution is 2XX or the cache is 304
If (SUCCESS ){
Success (oajax. responsetext );
// Responsetext parse text
}
}
Else {
If (error ){
Error ();
}
}
}
}
}
Window. onload = function (){
VaR obtn = Document. getelementbyid ('button1 ');
Obtn. onclick = function (){
Ajax('data.html ', function (STR ){
Alert (STR );
}, Function (){
Alert ('read failed ');
})
}
}
</SCRIPT>
</Head>
<Body>
<Input type = "button" id = "button1" value = "send">
</Body>

</Html>

Data.html

{'Username': 'objeck '}

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.