var xmlHttp; var requesttype=""; function createXmlHttp() { if(window.XMLHttpRequest) { xmlHttp=new XMLHttpRequest();//mozilla浏览器 } else if(window.ActiveXObject) { try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");//IE旧版本 } catch(e) { } try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");//IE新版本 } catch(e) { } if(!xmlHttp) { window.alert("不能创建XMLHTTPREQUEST对象!"); return false; } } } function startRequest() { createXmlHttp(); //使用GET方式 var url="http://www.fraglan.com/login.asp?txt=0FRAGLAN0&qt=&q=2016-8-13 4:07:58"; xmlHttp.open("GET",url,false,null,null); xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); xmlHttp.onreadystatechange=bindclass; xmlHttp.send(""); } function bindclass() { if(xmlHttp.readyState==4) { if(xmlHttp.status==200) { var result=xmlHttp.responseText; if(result!="0"){document.getElementById('fgl_login').innerHTML = result;} //document.getElementById('fgl_login').innerHTML = result; } } } startRequest()