主頁 > 知識庫 > ajax.net +jquery 無刷新三級聯(lián)動的實例代碼

ajax.net +jquery 無刷新三級聯(lián)動的實例代碼

熱門標簽:電銷語音自動機器人 長春呼叫中心外呼系統(tǒng)哪家好 鄭州400電話辦理 聯(lián)通 萊蕪外呼電銷機器人價格 智能電話營銷外呼系統(tǒng) 戶外地圖標注軟件手機哪個好用 凱立德導航官網(wǎng)地圖標注 五常地圖標注 地圖標注和認領

復制代碼 代碼如下:

    !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
    title>/title>
    script src="Jquery1.7.js" type="text/javascript">/script>
    script type="text/javascript">
        $(function () {
            $.ajax({
                type: "post",
                contentType: "application/json",
                url: "WebService1.asmx/loadprovince",
                data: "{}",
                success: function (result) {
                    var ping;
                    for (var i = 0; i result.d.length; i++) {
                        ping += "option value=" + result.d[i].provinceID + ">";
                        ping += result.d[i].provincename;
                        ping += "/option>";

                    }
                    $('#Select1').append(ping);

   
                }

   
            })
            $('#Select1').change(function () {
                //第二次選時要記得清空市和縣中的內(nèi)容
                $('#Select2 option:gt(0)').remove();
                $('#Select3 option:gt(0)').remove();
                //在省的改變事件里綁定下一個下來列表(要失掉省的id)

                $.ajax({
                    type: "post",
                    contentType: "application/json",
                    url: "WebService1.asmx/loadcity",
                    data: "{fatherid:'" + $('#Select1 option:selected').val() + "'}",
                    success: function (result) {
                        var str2;
                        for (var i = 0; i result.d.length; i++) {
                            str2 += "option value=" + result.d[i].cityID + ">";
                            str2 += result.d[i].cityname;
                            str2 += "/option>";
                        }

                        $('#Select2').append(str2);
                    }
                })
            })
            $('#Select2').change(function () {
                $('#Select3 option:gt(0)').remove();

                $.ajax({
                    type: "post",
                    contentType: "application/json",
                    url: "WebService1.asmx/loadarea",
                    data: "{fatherid:'" + $('#Select2 option:selected').val() + "'}",
                    success: function (result) {
                        var str3;
                        for (var i = 0; i result.d.length; i++) {
                            str3 += "option value=" + result.d.areaID + ">";
                            str3 += result.d[i].areaname;
                            str3 += result.d[i].father;

                        }
                        $('#Select3').append(str3);
                    }
                })
            })
        })

    /script>
/head>
body>
   ?。?BR>    select id="Select1">
        option>--請選擇--/option>
    /select>
    市:
    select id="Select2">
        option>--請選擇--/option>
    /select>
    縣:
    select id="Select3">
        option>--請選擇--/option>
    /select>
/body>
/html>

webservice:

復制代碼 代碼如下:

 [WebMethod]//加載省
        public ListModel.province> loadprovince()//為什么要用list因為這里出從前的值不可能一個實例是多個model實例,一個實例就是一條記載這樣做防止字段錯誤
        {
            BLL.province bp = new BLL.province();
            ListModel.province> list=bp.getlistModel();
            return list;
        }
        [WebMethod]//加載市
        public ListModel.city> loadcity(string fatherid)
        {
            BLL.city bc = new BLL.city();
            ListModel.city> list = bc.getlistmodel(fatherid);
            return list;
        }
        [WebMethod]//加載縣
        public ListModel.area> loadarea(string fatherid)
        {
            BLL.area ba = new BLL.area();
            ListModel.area> list = ba.getlistmodel(fatherid);
            return list;

        }
    }
}

DAL--area

復制代碼 代碼如下:

public System.Collections.Generic.ListModel.area> getlistmodel(string fatherid)
        {
            System.Collections.Generic.ListModel.area> list = new System.Collections.Generic.ListModel.area>();
            DataTable dt = GetList("father=" + fatherid + "").Tables[0];
            foreach (DataRow row in dt.Rows)
            {
                Model.area ma = new Model.area();
                ma.areaID = row["areaID"].ToString();
                ma.areaname = row["areaname"].ToString();
                ma.father = row["father"].ToString();
                list.Add(ma);
            }
            return list;
        }


Dal--city

復制代碼 代碼如下:

 public System.Collections.Generic.ListModel.area> getlistmodel(string fatherid)
        {
            System.Collections.Generic.ListModel.area> list = new System.Collections.Generic.ListModel.area>();
            DataTable dt = GetList("father=" + fatherid + "").Tables[0];
            foreach (DataRow row in dt.Rows)
            {
                Model.area ma = new Model.area();
                ma.areaID = row["areaID"].ToString();
                ma.areaname = row["areaname"].ToString();
                ma.father = row["father"].ToString();
                list.Add(ma);
            }
            return list;
        }
    }


DAL-provience

復制代碼 代碼如下:

public System.Collections.Generic.ListModel.province> getlistModel()
        {
            //將要查的內(nèi)容以實例的方式返回
            //這里要做的就是要建立list并將list用model實例填滿,而model要用一個方法失掉數(shù)據(jù)并添加到model中
          //建list實例
            System.Collections.Generic.ListModel.province> list = new System.Collections.Generic.ListModel.province>();
            //已經(jīng)有了的失掉數(shù)據(jù)的方法就不用自己寫了通過調(diào)用Getlist的方法操縱數(shù)據(jù)庫拿到數(shù)據(jù)
            DataTable dt = GetList("").Tables[0];
            //拿到數(shù)據(jù)后就需要將數(shù)據(jù)添加到model實例中了

            foreach (DataRow row in dt.Rows)
            {
                //每一行都是個實例所以要將model的放在循環(huán)里面
                Model.province mp = new Model.province();
                mp.provinceID = row["provinceID"].ToString();
                mp.provincename = row["provincename"].ToString();
                list.Add(mp);//沒添加完一個實例都要放到list中
            }
            return list;


        }

您可能感興趣的文章:
  • PHP+Mysql+Ajax+JS實現(xiàn)省市區(qū)三級聯(lián)動
  • asp.net省市三級聯(lián)動的DropDownList+Ajax的三種框架(aspnet/Jquery/ExtJs)示例
  • AJAX省市區(qū)三級聯(lián)動下拉菜單(java版)
  • ajax實現(xiàn)無刷新省市縣三級聯(lián)動
  • ajax三級聯(lián)動下拉菜單效果
  • jquery+ajax實現(xiàn)省市區(qū)三級聯(lián)動效果簡單示例
  • jQuery ajax實現(xiàn)省市縣三級聯(lián)動
  • ajax三級聯(lián)動的實現(xiàn)方法
  • AJAX和WebService實現(xiàn)省市縣三級聯(lián)動具體代碼
  • ajax實現(xiàn)select三級聯(lián)動效果

標簽:岳陽 西藏 福州 衢州 湖州 宣城 西寧 紅河

巨人網(wǎng)絡通訊聲明:本文標題《ajax.net +jquery 無刷新三級聯(lián)動的實例代碼》,本文關鍵詞  ajax.net,+jquery,無,刷新,三級,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《ajax.net +jquery 無刷新三級聯(lián)動的實例代碼》相關的同類信息!
  • 本頁收集關于ajax.net +jquery 無刷新三級聯(lián)動的實例代碼的相關信息資訊供網(wǎng)民參考!
  • 推薦文章