在查询与列表显示的时候经常用到联动列表显示,比如一级选项是国家,二级选项是省,三级是市,这样的联动是联系的实时导出的,比如你不可能选择了四川省却在三级联动栏中出现济南市,这样的联动实现方法如下:
实现源代码:
<!DOCTaYPE 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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <meta name="keywords" content=" keywords" /> <meta name="description" content="description" /> </head> <script type="text/javascript" src="jquery-1.4.2.min.js"></script> <style type="text/css"> body{font-size:13px} .clsInit{width:435px;height::35px;line-height:35px;padding-left:10px} .clsTip{padding-top:5px;background-color:#eee;display:none} .btn{border:solid 1px #666;padding:2px;width:65px;float:right;margin-top:6px;margin-right:6px;filter:progid:DXImageTransform.Mcrosoft.Gradient(GraientType=0,StartColorStr=#FFFFFF,EndColorStr=#ECE9D8);} </style> <body> <script type="text/javascript"> $(function(){ function objInit(obj){ return $(obj).html('<option>请选择</option>'); } var arrData={ 河北:{保定:'保定1,保定2', 石家庄:'石家庄1,石家庄2'}, 山东:{济南:'济南1,济南2', 青岛:'青岛1,青岛2'}, 河南:{郑州:'郑州1,郑州2', 洛阳:'洛阳1,洛阳2'} }; $.each(arrData,function(pF){ $('#selF').append('<option>'+pF+'</option>'); }); $('#selF').change(function(){ objInit('#selT'); objInit('#selC'); $.each(arrData,function(pF,pS){ if($('#selF option:selected').text()==pF){ $.each(pS,function(pT,pC){ $('#selT').append('<option>'+pT+'</option>'); }); $('#selT').change(function(){ objInit('#selC'); $.each(pS,function(pT,pC){ if($('#selT option:selected').text()==pT){ $.each(pC.split(","),function(){ $('#selC').append('<option>'+this+'</option>'); }) } }) }); } }) }); }); </script> <div class="clsInit"> 省:<asp:DropDownList ID="selF" runat="server"> <asp:ListItem>请选择</asp:ListItem> </asp:DropDownList> 市:<asp:DropDownList ID="selT" runat="server"> <asp:ListItem>请选择</asp:ListItem> </asp:DropDownList> 县:<asp:DropDownList ID="selC" runat="server"> <asp:ListItem>请选择</asp:ListItem> </asp:DropDownList> <input type="button" value="查询" id="Button1" class="btn" /> </div> <div class="clsInit" id="divTip"></div> </body> </html>