实现无刷新DropdownList联动效果

在做一个文章添加功能时,想在选择大类后,自动将其所属二级小类显示出来,使用DropDownList的SelectedIndexChanged事件可以很容易实现,但每次选择后页面总要刷新一次,让人感觉很不爽。为实现DropDownList无刷新二级联动,这几天在网上找了些资料,但都无法达到我想要的效果,经过反复调试,现已基本实现了此功能,现将代码附下。

一、数据库设计:
字段名 数据类型 说明
ClassID 自动编号 类编号
ClassName varchar(8) 类名
UpClassID int(4) 上级类编号
ClassLevel int(4) 类级别,1为大类,2为小类
 

 


  实现无刷新DropdownList联动效果(2) 
二、设计步骤:
1、首先,我们新建一个页面DropTest.aspx,在其中放入两个DropDownList控件:DropDownList1和DropDownList2,其完整代码如下:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DropTest.aspx.cs" Inherits="DropTest" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
    <script language="javascript">
        function load(ClassID) //ClassID为接收传递的大类编号
        {
            var drp2 = document.getElementById("DropDownList2");
            function RemoveAll(oElem) //清除DropDownList2的所有项
            {
                var i = 0;
                for (i = oElem.length; i >= 0; i--)
                {
                    oElem.options.remove(i);
                }
            }
            RemoveAll(drp2)
            var oHttpReq = new ActiveXObject("MSXML2.XMLHTTP");
            var oDoc = new ActiveXObject("MSXML2.DOMDocument");
            oHttpReq.open("POST", "DropChild.aspx?ClassID="+ClassID, false); //调用读取小类数据的页面,将大类编号值传递过去
            oHttpReq.send("");
            result = oHttpReq.responseText;
            oDoc.loadXML(result);
            items1 = oDoc.selectNodes("//CLASSNAME/Table/ClassName"); //读取所有请求大类所属小类的类名
            items2 = oDoc.selectNodes("//CLASSNAME/Table/ClassID"); //读取所有请求大类所属小类的编号
            var itemsLength=items1.length;
            for(i=0;i<itemsLength;i++) //将小类的类名和编号赋予DropDownList2
            {
                var newOption = document.createElement("OPTION");
                newOption.text=items1[i].text;
                newOption.value=items2[i].text;
                drp2.options.add(newOption);
            }
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:DropDownList ID="DropDownList1" runat="server">
        </asp:DropDownList>
        <asp:DropDownList ID="DropDownList2" runat="server">
        </asp:DropDownList>
        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
        <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click1" /></div>
    </form>
</body>
</html>

该页面的后台文件(DropTest.aspx.cs)中Page_Load内的代码如下:

        if (!this.IsPostBack)
        {
            SqlConnection con = new SqlConnection("server=192.168.88.70;database=PEDU;uid=sa;pwd=tmdsbwbd011;");
            SqlDataAdapter da = new SqlDataAdapter("select ClassName,ClassID from CityDB where ClassLevel=1", con);
            DataSet ds = new DataSet();
            da.Fill(ds);
            this.DropDownList1.DataSource = ds.Tables[0].DefaultView;
            this.DropDownList1.DataTextField = "ClassName";
            this.DropDownList1.DataValueField = "ClassID";
            this.DropDownList1.DataBind();
            this.DropDownList1.Attributes.Add("onchange", "load(this.options[this.selectedIndex].value)"); //将ClassID作为参数传递给脚本函数load(ClassID),如果要传递的是ClassName,应将value改为innerText,但如果大类为中文,则调用小类时出现无法显示的问题
        }
 
此页面实现如下功能:首先从数据库内读取所有类级别为1(即大类)的类名和类编号,绑定到DropDownList1控件上;然后通过DropDownList1的Attributes属性调用javascript函数load(ClassID);load()函数通过调用DropChild.aspx页面,读取XML流,得到大类所属小类的ClassName和ClassID。
2、新建DropChild.aspx页面文件,其中不插入任何控件和文本,只在其后台文件(DropChild.aspx.cs)中的Page_Load中加入以下代码:

        if(this.Request["ClassID"]!=null)
        {
            int state = Convert.ToInt32(this.Request["ClassID"]);
            SqlConnection con = new SqlConnection("server=192.168.88.70;database=PEDU;uid=sa;pwd=tmdsbwbd011;");
            SqlDataAdapter da = new SqlDataAdapter("select ClassName,ClassID from CityDB where UPClassID='" + state + "'",con);
            DataSet ds = new DataSet("CLASSNAME");
            da.Fill(ds);
            XmlTextWriter writer = new XmlTextWriter(Response.OutputStream, Response.ContentEncoding);
            writer.Formatting = Formatting.Indented;
            writer.Indentation = 4;
            writer.IndentChar = ' ';
            ds.WriteXml(writer);
            writer.Flush();
            Response.End();
            writer.Close();
        }
别忘了加上System.Xml的声明空间引用。
 
该方法得到用户选择的大类的编号,通过查询以后得到一个DataSet对象,使用该对象的WriteXML方法直接将内容写到Response.OutputStream里面然后传递到客户端,客户端的load方法通过result =oHttpReq.responseText;句话得到一个XML字符串,最后解析此串。
另外,测试获取DropDownList2值,当点击Button时,处理事件代码如下:

    protected void Button1_Click1(object sender, EventArgs e)
    {
         Label1.Text = this.Request.Form["DropDownList1"].ToString() + this.Request.Form["DropDownList2"].ToString();
    }
 

转载于:https://www.cnblogs.com/yefei520/archive/2006/07/12/448513.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
这个是ajax 实现DropDownList刷新联动。里面有数据库结构和内容,表结构的是sql2000的, 关键代码: <SCRIPT language="javascript"> //城市------------------------------ function cityResult() { var city=document.getElementById("DropDownList1"); AjaxMethod.GetCityList(city.value,get_city_Result_CallBack); } function get_city_Result_CallBack(response) { if (response.value != null) { //debugger; document.all("DropDownList2").length=0;          var ds = response.value; if(ds != null && typeof(ds) == "object" && ds.Tables != null) { for(var i=0; i<ds.Tables[0].Rows.length; i++)      {      var name=ds.Tables[0].Rows[i].CityName;        var id=ds.Tables[0].Rows[i].ProvinceID;        document.all("DropDownList2").options.add(new Option(name,id));      } } } else { document.all("DropDownList2").length=0; } return } //市区---------------------------------------- function areaResult() { var area=document.getElementById("DropDownList2"); AjaxMethod.GetAreaList(area.value,get_area_Result_CallBack); } function get_area_Result_CallBack(response) { if (response.value != null) { document.all("DropDownList3").length=0;          var ds = response.value; if(ds != null && typeof(ds) == "object" && ds.Tables != null) { for(var i=0; i<ds.Tables[0].Rows.length; i++)      {        var name=ds.Tables[0].Rows[i].ProvinceName;        var id=ds.Tables[0].Rows[i].id;        document.all("DropDownList3").options.add(new Option(name,id));      } } } else { document.all("DropDownList3").length=0; } return } </SCRIPT>

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值