Ajax Station SMS Access code

Source: Internet
Author: User
Tags setinterval browser cache

var timeout = null; setinterval function handle
var xmlHttp = false; //
Initializing the XMLHttpRequest Object
function Createxmlhttp () {
XmlHttp = false;
if (window. ActiveXObject) {
try {xmlHttp = new ActiveXObject ("Msxml2.xmlhttp");}
catch (e) {xmlHttp = new ActiveXObject ("Microsoft.XMLHTTP");}
}else if (window. XMLHttpRequest) {xmlHttp = new XMLHttpRequest ();}
}
Asynchronously calls the page to fetch the result timestamp in order not to let the browser cache the result
function SendRequest () {
Createxmlhttp ();
var url = "/message/getmessage.asp tutorial? timestamp=" + New Date (). GetTime ();
if (!xmlhttp) {
Alert ("XMLHttpRequest is not create!");
}
Xmlhttp.open ("Get", url, True);
Xmlhttp.onreadystatechange = function () {//callback function start
var tag = document.getElementById ("newmsg");
tag.innerhtml = "";
if (xmlhttp.readystate = = 4 && xmlhttp.status = 200) {
if (xmlhttp.responsetext>0) {
Tag.innerhtml= "}else{
Tag.innerhtml= "";
}
}
}//callback function ends
Xmlhttp.send (NULL);
}

//Start automatic refresh
Function Update () {
Timeout = window.setinterval ("SendRequest ()", 10000);/set 10 seconds Call Update page
}
/Stop automatic refresh
function stopupdate () {
if (timeout!= null) {
Window.clearinterval (timeout);
}
}%>

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.