亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

ASP.NET jQuery 食譜24 (通過AJAX簡(jiǎn)單實(shí)現(xiàn)DropD

系統(tǒng) 3033 0

這節(jié)主要內(nèi)容是通過AJAX調(diào)用頁面后臺(tái)代碼方法實(shí)現(xiàn)下拉框二級(jí)聯(lián)動(dòng)效果,實(shí)現(xiàn)步驟如下:

1.創(chuàng)建文件Recipe24.aspx,實(shí)現(xiàn)后臺(tái)代碼如下

      
        //
      
      
         引入命名空間
      
      
        
using System.Web.Services;
// 實(shí)現(xiàn)下拉框二級(jí)聯(lián)動(dòng)AJAX請(qǐng)求加載數(shù)據(jù)方法
[WebMethod()]
public static ArrayList GetSubList( string sBuyID)
{
ArrayList subList = new ArrayList();

if (sBuyID == " 1 " )
{
subList.Add( new ListItem( " 文藝 " , " 1 " ));
subList.Add( new ListItem( " 少兒 " , " 2 " ));
subList.Add( new ListItem( " 人文社科 " , " 3 " ));
subList.Add( new ListItem( " 科技 " , " 4 " ));
}
else if (sBuyID == " 2 " )
{
subList.Add( new ListItem( " 手機(jī)通訊 " , " 1 " ));
subList.Add( new ListItem( " 手機(jī)配件 " , " 2 " ));
subList.Add( new ListItem( " 攝影攝像 " , " 3 " ));
subList.Add( new ListItem( " 數(shù)碼配件 " , " 4 " ));
}

return subList;
}

2.實(shí)現(xiàn)頁面代碼(HTML部分)如下:

      
        <
      
      
        body
      
      
        >
      
      
< form id ="form1" runat ="server" >
< div align ="center" >
< fieldset style ="width: 400px; height: 150px;" >
< table border ="0" cellpadding ="10" cellspacing ="10" >
< tr >
< td >
< asp:DropDownList ID ="buyList" runat ="server" Width ="120px" >
< asp:ListItem Value ="0" Text =" --- 請(qǐng)選擇 --- " ></ asp:ListItem >
< asp:ListItem Value ="1" Text ="圖書" ></ asp:ListItem >
< asp:ListItem Value ="2" Text ="手機(jī)數(shù)碼" ></ asp:ListItem >
</ asp:DropDownList >
</ td >
< td >
< asp:DropDownList ID ="subList" runat ="server" Width ="120px" >
< asp:ListItem Value ="0" Text =" --- 請(qǐng)選擇 --- " ></ asp:ListItem >
</ asp:DropDownList >
</ td >
</ tr >
</ table >
</ fieldset >
</ div >
</ form >
</ body >

3.實(shí)現(xiàn)腳本代碼如下:

      
        <
      
      
        script 
      
      
        type
      
      
        ="text/javascript"
      
      
        >
      
      
        
$(
function () {
$(
" #buyList " ).bind( " keyup change " , function (e) {
e.preventDefault();
// 首先初始化
$( " #subList " ).empty().append($( " <option></option> " ).val( " 0 " ).html( " --- 請(qǐng)選擇 --- " ));
if ($( this ).val() != " 0 " ) {
sendData($(
this ).val());
}
});

function sendData(sBuyID) {
var loc = window.location.href;
$.ajax({
type:
" POST " ,
url: loc
+ " /GetSubList " , // 調(diào)動(dòng)后臺(tái)頁面方法
data: ' {"sBuyID":" ' + sBuyID + ' "} ' ,
contentType:
" application/json; charset=utf-8 " ,
dataType:
" json " ,
success:
function (msg) {
// msg.d是數(shù)組,由后臺(tái)數(shù)組ArrayList返回,因此可以遍歷每個(gè)元素
$.each(msg.d, function () {
// this.Value和this.Text是后臺(tái)返回?cái)?shù)組ArrayList類型包含元素ListItem類型的屬性
$( " #subList " ).append($( " <option></option " ).val( this .Value).html( this .Text));
});
},
error:
function () {
alert(
" ajax請(qǐng)求發(fā)生錯(cuò)誤 " );
}
});
}
});
</ script >

4.下拉框二級(jí)聯(lián)動(dòng)效果圖:

ASP.NET jQuery 食譜24 (通過AJAX簡(jiǎn)單實(shí)現(xiàn)DropDownList二級(jí)聯(lián)動(dòng))_第1張圖片

5.分析XmlHttpRequest對(duì)象,可看到請(qǐng)求響應(yīng)的數(shù)據(jù)msg.d的結(jié)構(gòu)如下(通過下圖就知道m(xù)sg.d的每個(gè)元素為什么會(huì)有Text和Value屬性了):

ASP.NET jQuery 食譜24 (通過AJAX簡(jiǎn)單實(shí)現(xiàn)DropDownList二級(jí)聯(lián)動(dòng))_第2張圖片

?

今天發(fā)現(xiàn)一個(gè)問題,就是以上代碼如果在VS2005建立的項(xiàng)目里面運(yùn)行,AJAX會(huì)報(bào)JSON對(duì)象錯(cuò)誤,但在VS2010項(xiàng)目里面運(yùn)行正常,一直沒找到原因,哪位高手如果知道其原因,請(qǐng)告知,謝謝。

ASP.NET jQuery 食譜24 (通過AJAX簡(jiǎn)單實(shí)現(xiàn)DropDownList二級(jí)聯(lián)動(dòng))


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號(hào)聯(lián)系: 360901061

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對(duì)您有幫助就好】

您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺我的文章對(duì)您有幫助,請(qǐng)用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長(zhǎng)會(huì)非常 感謝您的哦?。?!

發(fā)表我的評(píng)論
最新評(píng)論 總共0條評(píng)論
主站蜘蛛池模板: 不卡的毛片 | 99这里有精品视频 | 欧美精品在线一区 | 成人综合久久综合 | 亚洲国产一区在线 | 久久久久青草线蕉亚洲麻豆 | 人人揉揉香蕉大免费不卡 | 成人精品视频 成人影院 | 亚洲第一区香蕉_国产a | 国产成人综合网亚洲欧美在线 | 国产做受视频激情播放 | 亚洲美女在线视频 | 国产97公开成人免费视频 | 亚洲一级毛片免观看 | 国产精品欧美亚洲韩国日本不卡 | 99久久精品国产交换 | 女人18毛片特级一级免费视频 | 成人欧美一区二区三区在线 | 国产亚洲欧美精品久久久 | 欧美成人性生活视频 | 久久综合香蕉久久久久久久 | 精品亚洲性xxx久久久 | 亚洲天堂欧美 | 夜夜操天天操 | 久久91精品国产一区二区 | 亚洲精品久久99久久 | 在线观看日韩一区 | 全部费免一级毛片不收费 | 亚洲日日| 国产精品乱码一区二区三区 | 99视频在线免费观看 | 99视频九九精品视频在线观看 | 久久久久欧美精品三级 | 欧美骚视频| 亚洲欧美综合网 | 久久网页 | 欧美另类网站 | h片在线播放免费高清 | 深夜网站在线 | 欧美三级纯黄版 | 亚洲成年人在线观看 |