AJAX介面及普通AJAX使用及示例

2021-08-30 18:49:05 字數 2961 閱讀 5478

以下為示例:

1:ajax介面

var ajax=function();

this.issync=function();

/*** 遠端請求ajax 位址

*/this.setremoteurl=function(url);

//獲取url位址

var getcacheparameterstring=function()

return '';

};/**

* 設定的請求引數

*/this.setparameter=function(key,value);

/*** 獲取請求引數,local函式

*/var getparameterstring=function()

//如果存在引數

if(parameterstring!="")

return parameterstring;

};/**

* 處理請求

*/this.sendgetrequest=function()

if(request.readystate == 4)else}};

request.send("");

};this.sendpostrequest=function()

if(request.readystate == 4)else}};

request.send(getparameterstring());

};//獲取返回text

this.getresponsetext=function()

//獲取返回html

this.getrespon***ml=function()

/*** 正在處理操作

*/this.onloading=function();

//成功操作

this.onsuccess=function();

//如果失敗

}2:普通ajax使用示例

Ajax 使用jQuery 實現Ajax

get post 方式 1 doctype html 2 html lang en 3 head 4 meta charset utf 8 5 title document title 6head 7 script type text j ascript src jquery.js script 8...

ajax的基本使用及封裝

ajax流程 建立ajax物件 1.傳送請求 傳送請求位址 傳送請求的方式 2.傳送資料 3.設定監聽事件,監聽後端是否返回資料 4.處理資料 get請求 建立ajax物件 設定請求的路徑和方法,get post get 表單提交的資料會拼接到請求的路徑裡,效率高 post 會將表單的資料放置到請求...

Ajax的實現及使用 zepto

之前歸納了ajax技術的基礎知識,汗顏的是這兩篇本應該在年初補上的,但因為種種原因,並沒有補上.不過還好最近有空,所以開始整理之前的日記.共分為兩篇 對於zepto ajax 的實現解析 對於jquery ajax 的實現解析 關於基礎部分的知識,有興趣的可以檢視ajax的實現及使用 原生物件.這裡...