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服务器是否正常运行!");
}
}
}
// 初始化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服务器是否正常运行!");
}
}
}
 
                    
                     
                    
                 
                    
                 
 
         
                
            
         浙公网安备 33010602011771号
浙公网安备 33010602011771号