function Ajaxs(e){
if (window.ActiveXObject){
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}else if (window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
xmlHttp.open("get",e,true);
xmlHttp.onreadystatechange=AjaxHt1;
xmlHttp.send(null);
}
function AjaxHt1(){
if ( xmlHttp.readyState==4 ) {
if ( xmlHttp.status==200 ) {
return true;
}
}
}
調用:Ajaxs(地址)
如:Ajaxs("d.asp?f=44")
即可執行d.asp里的內容