var xmlHttp;

// 初始化XMLHttpRequest对象
function createXMLHttpRequest(){
    if(window.ActiveXObject){                                           //针对IE浏览器
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    else if (window.XMLHttpRequest)                               //针对其它浏览器,像Firefox ,google等
    {
        xmlHttp = new XMLHttpRequest();
    }    
}
// 处理状态变化
function handleStateChange(){
    if(xmlHttp.readyState == 4)
    {
        if(xmlHttp.status == 200)
        {
            document.getElementById("currenttime").innerHTML = xmlHttp.responseText;
        }
        else
        {
            alert("请检查Web服务器是否正常运行!");            
        }
    }
}
posted on 2009-09-02 16:05  东方凌云  阅读(256)  评论(0)    收藏  举报