87,997
社区成员




function addLoadEvent(func){
var oldonload=window.onload;
if(typeof window.onload!='function'){
window.onload=func;
}else{
window.onload=function(){
oldonload();
func();
}
}
}
addLoadEvent(doth);
var READY_STATE_UNINITIALIZED=0;
var READY_STATE_LOADING=1;
var READY_STATE_LOADED=2;
var READY_STATE_INTERACTIVE=3;
var READY_STATE_COMPLETE=4;
var req=null;
var console=null;
function sendRequest(url,params,HttpMethod){
if(!HttpMethod){
HttpMethod="GET";
}
req=initXMLHTTPRequest();
if(req){
req.onreadystatechange=onReadyStateChange;
req.open(HttpMethod,url,true);
req.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
req.setRequestHeader("Pragma", "no-cache");
req.send(params);
}
}
function initXMLHTTPRequest(){
var xRequest=null;
if(window.XMLHttpRequest){
xRequest=new XMLHttpRequest();
}else if(typeof ActiveXObject!="undefined"){
xRequest=new ActiveXObject
("Microsoft.XMLHTTP");
}
return xRequest;
}
function onReadyStateChange(){
var ready=req.readyState;
check=req.readyState;
var data=" ";
if(ready==READY_STATE_COMPLETE){
data=req.responseText;
}
toConsole(data);
}
function toConsole(data){
if(console!=null){
var newline=document.createElement("div");
newline.id="comedata";
console.appendChild(newline);
var txt=document.createTextNode(data);
newline.appendChild(txt);
}
}
function doth(){
console=document.getElementById('console');
sendRequest("data.txt")
}