目前共有2篇帖子。
【ASP】AJAX快速發送函數
1樓 产品的注销 2011-1-22 15:20
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里的內容

2樓 产品的注销 2011-1-22 15:20
2010年05月08日 15:09

回復帖子

內容:
用戶名: 您目前是匿名發表
驗證碼:
 
 
©2010-2024 Arslanbar [手機版] [桌面版]
除非另有聲明,本站採用創用CC姓名標示-相同方式分享 3.0 Unported許可協議進行許可。