jquery之a(chǎn)jax實例
來源:易賢網(wǎng) 閱讀:762 次 日期:2016-06-24 11:10:19
溫馨提示:易賢網(wǎng)小編為您整理了“jquery之a(chǎn)jax實例”,方便廣大網(wǎng)友查閱!

jquery第十九課,在前一課學(xué)習(xí)了jquery的ajax參數(shù)的設(shè)置,本節(jié)直接通過實例來進行ajax的介紹,并分析ajax的參數(shù)設(shè)置等.

參考共用代碼:

<!doctype html public -//w3c//dtd html 4.0 transitional//en>

<html><head><title>jquery特效處理-前臺代碼</title>

<script language=javascript src=jquery-1.4.2.min.js></script>

<script language=javascript>

$(function(){//<!--www.forasp.cn jquery代碼區(qū)-->

$(#cn).bind(click,function(){//綁定后面的按鈕click事件

//ajax代碼區(qū)        

});});

</script>

<body>

<input type=text maxlength=20 id=forasp> <input type=button  value=jquery的ajax測試 id=cn>

</body>

</html>

(1)用get的提交形式ajax實例分析

$.ajax({type:get,datatype:text,data:foraspcnurl=+$(#forasp).val(),url:index.php,success:function(msg){alert(msg);}

index.php代碼如下

<?echo $_get[foraspcnurl];?>

分析:提交方式type:get,數(shù)據(jù)類型data:text,數(shù)據(jù)foraspcnurl=id為forasp的text的值,發(fā)送請求地址url:index.php,成功返回success函數(shù):function(msg){},msg為返回的數(shù)據(jù)

運行:在文本框填寫網(wǎng)站制作學(xué)習(xí)網(wǎng),點擊按鈕彈出網(wǎng)站制作學(xué)習(xí)網(wǎng)

(2)用post提交形式提交ajax實例

$.ajax({type:post,catch:false,datatype:text,data:foraspcnurl=+$(#forasp).val(),url:index4.php,success:function(msg){alert(msg);}

index.php代碼如下

<?echo $_post[foraspcnurl];?>

分析:基本跟get方式相似,多了個是否緩存catch:false,不緩存該頁面.加這個cache更明白cache用法.在請求的url代碼不一樣了由原來的$_get變成了$_post這事根據(jù)提交形式來定的.

(3)通過ajax看參數(shù)context(類型object),datatype(數(shù)據(jù)類型string),beforesend的使用

$.ajax({

type:post,

cache:false,datatype:text,

data:foraspcnurl=+$(#forasp).val(),

url:index4.php,

success:function(msg){alert(msg);},

complete:function(){alert(完成ajax事件)},

beforesend:function(){return confirm(檢查數(shù)據(jù),確實提交嗎?);}

});

運行試試,首先用beforesend,彈出檢查數(shù)據(jù),確實提交嗎?,如果點擊確定返回true,則繼續(xù)ajax,如果不是,則停止執(zhí)行ajax,當(dāng)確定后則執(zhí)行,首先彈出輸入的內(nèi)容,然后彈出ajax執(zhí)行完成.

更多信息請查看網(wǎng)絡(luò)編程
上一篇:jquery事件操作
易賢網(wǎng)手機網(wǎng)站地址:jquery之a(chǎn)jax實例

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)