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里的内容
|