淺析jQuery Ajax通用js封裝
更新時間:2016年06月22日 14:48:02 作者:Ruthless
這篇文章主要介紹了jQuery Ajax通用js封裝的實例代碼,非常不錯,具有參考借鑒價值,感興趣的朋友一起學習吧
本文大概分為三步實現(xiàn)jquery ajax通過js封裝,通過代碼實例講解,代碼附有注釋,比較容易理解,具體詳情如下所示:
第一步:引入jQuery庫
<script type="text/javascript" src="<%=path%>/resources/js/jquery.min.js"></script>
第二步:開發(fā)Ajax封裝類,已測試通過,可以直接調(diào)用,直接貼代碼,講解就省了
/*****************************************************************
jQuery Ajax封裝通用類 (linjq)
*****************************************************************/
$(function(){
/**
* ajax封裝
* url 發(fā)送請求的地址
* data 發(fā)送到服務(wù)器的數(shù)據(jù),數(shù)組存儲,如:{"date": new Date().getTime(), "state": 1}
* async 默認值: true。默認設(shè)置下,所有請求均為異步請求。如果需要發(fā)送同步請求,請將此選項設(shè)置為 false。
* 注意,同步請求將鎖住瀏覽器,用戶其它操作必須等待請求完成才可以執(zhí)行。
* type 請求方式("POST" 或 "GET"), 默認為 "GET"
* dataType 預期服務(wù)器返回的數(shù)據(jù)類型,常用的如:xml、html、json、text
* successfn 成功回調(diào)函數(shù)
* errorfn 失敗回調(diào)函數(shù)
*/
jQuery.ax=function(url, data, async, type, dataType, successfn, errorfn) {
async = (async==null || async=="" || typeof(async)=="undefined")? "true" : async;
type = (type==null || type=="" || typeof(type)=="undefined")? "post" : type;
dataType = (dataType==null || dataType=="" || typeof(dataType)=="undefined")? "json" : dataType;
data = (data==null || data=="" || typeof(data)=="undefined")? {"date": new Date().getTime()} : data;
$.ajax({
type: type,
async: async,
data: data,
url: url,
dataType: dataType,
success: function(d){
successfn(d);
},
error: function(e){
errorfn(e);
}
});
};
/**
* ajax封裝
* url 發(fā)送請求的地址
* data 發(fā)送到服務(wù)器的數(shù)據(jù),數(shù)組存儲,如:{"date": new Date().getTime(), "state": 1}
* successfn 成功回調(diào)函數(shù)
*/
jQuery.axs=function(url, data, successfn) {
data = (data==null || data=="" || typeof(data)=="undefined")? {"date": new Date().getTime()} : data;
$.ajax({
type: "post",
data: data,
url: url,
dataType: "json",
success: function(d){
successfn(d);
}
});
};
/**
* ajax封裝
* url 發(fā)送請求的地址
* data 發(fā)送到服務(wù)器的數(shù)據(jù),數(shù)組存儲,如:{"date": new Date().getTime(), "state": 1}
* dataType 預期服務(wù)器返回的數(shù)據(jù)類型,常用的如:xml、html、json、text
* successfn 成功回調(diào)函數(shù)
* errorfn 失敗回調(diào)函數(shù)
*/
jQuery.axse=function(url, data, successfn, errorfn) {
data = (data==null || data=="" || typeof(data)=="undefined")? {"date": new Date().getTime()} : data;
$.ajax({
type: "post",
data: data,
url: url,
dataType: "json",
success: function(d){
successfn(d);
},
error: function(e){
errorfn(e);
}
});
};
});
第三步:調(diào)用模擬
<%@ page language="java" pageEncoding="utf-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<base href="<%=basePath%>">
<title>jQuery Ajax封裝通用類測試</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<jsp:include page="/view/common/js_taglib.jsp"></jsp:include>
<script type="text/javascript">
$(function(){
$.ax(
getRootPath()+"/test/ajax.html",
null,
null,
null,
null,
function(data){
alert(data.code);
},
function(){
alert("出錯了");
}
);
$.axs(getRootPath()+"/test/ajax.html", null, function(data){
alert(data.data);
});
$.axse(getRootPath()+"/test/ajax.html",
null,
function(){
alert("成功了");
},
function(){
alert("出錯了");
});
});
</script>
</head>
<body>
</body>
</html>
以上所述是小編給大家介紹的jQuery Ajax通用js封裝的相關(guān)知識,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
您可能感興趣的文章:
相關(guān)文章
使用js dom和jquery分別實現(xiàn)簡單增刪改
今天學了jquery框架的簡單使用。于是用它實現(xiàn)簡單的增刪改,接著也用原始的javascript實現(xiàn)同樣的功能,兩者對比可以看出jquery的強大2014-09-09
jquery簡單實現(xiàn)滾動條下拉DIV固定在頭部不動
滾動條下拉DIV固定在頭部不動效果,想必很多的朋友都有見到過吧,下面為大家詳細介紹下使用jquery是如何實現(xiàn)的,感興趣的朋友可以參考下2013-11-11

