- 相關(guān)推薦
jQuery中ajax的get()方法運(yùn)用示例
jQuery中ajax的get()方法運(yùn)用示例
$.get()通過 HTTP GET請求從服務(wù)器上請求數(shù)據(jù)。
語法結(jié)構(gòu):
復(fù)制代碼 代碼如下:$.get(url, [data], [callback], [type]);
參數(shù)解析:
1.URL:必須,規(guī)定請求的.URL。
2.data:可選,待發(fā)送 Key/value 參數(shù)。
3.callback:可選,請求成功后所執(zhí)行的回調(diào)函數(shù)。
4.type:可選,返回內(nèi)容格式,xml, html, script, json, text, _default。
代碼實例:
復(fù)制代碼 代碼如下:
$(document).ready(function(){
$("#bt").click(function(){
$.get("mytest/demo/antzone.txt",function(data,status){
alert("Data:"+data+"nStatus:"+status);
})
})
})
希望本文所述對大家的jQuery程序設(shè)計有所幫助。
【jQuery中ajax的get()方法運(yùn)用示例】相關(guān)文章:
聲樂中的氣息運(yùn)用技巧02-24
UI設(shè)計中的色彩運(yùn)用08-24
設(shè)計中顏色的運(yùn)用技巧01-04
運(yùn)用Excel制作圖表的方法11-28
現(xiàn)代舞中呼吸的運(yùn)用03-04
2023少兒聲樂中的“趣味教學(xué)”運(yùn)用11-08
傳統(tǒng)視覺要素在動畫設(shè)計中的運(yùn)用09-05
Excel中if函數(shù)使用的方法06-16