2、json格式數(shù)據(jù)調(diào)用
代碼如下:
$.ajax({
url : "/trundle/RawContentAction.getAjaxContent.act",
data : "param1=22",
dataType : "json",//這里的dataType就是返回回來的數(shù)據(jù)格式了html,xml,json
cache: false,//設(shè)置是否緩存,默認(rèn)設(shè)置成為true,當(dāng)需要每次刷新都需要執(zhí)行數(shù)據(jù)庫操作的話,需要設(shè)置成為false
success : function(data) {
$(data).each(function(te, u) {
alert(te);
$("#content").append(u.title+"");
})
}
})
3、xml格式數(shù)據(jù)調(diào)用
代碼如下:
$.ajax({
url : "/trundle/RawContentAction.getAjaxContent.act",
data : "param1=22",
dataType : "xml",//這里的dataType就是返回回來的數(shù)據(jù)格式了html,xml,json
cache: false,//設(shè)置是否緩存,默認(rèn)設(shè)置成為true,當(dāng)需要每次刷新都需要執(zhí)行數(shù)據(jù)庫操作的話,需要設(shè)置成為false
success : function(xml) {
$(xml).find("*").each(function(){
//這邊對(duì)遍歷出來的內(nèi)容進(jìn)行處理,jquery都是可以使用xpath進(jìn)行遍歷的
})
}
})
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com