问题描述
比如第一项为所有省份加载的时候将其替换为全国
解决方案
解决方案二:
可以啊,在load事件中处理就是了
解决方案三:
你是从数据库里面取的数据绑定DropDownList的?
解决方案四:
BLLStafferListstaff=newBLLStafferList();ddlSeller.DataSource=staff.GetName("bIS_Pre_Sales=1").Tables[0];ddlSeller.DataTextField="StafferName";ddlSeller.DataValueField="StafferName";ddlSeller.DataBind();//绑定之后,加一项ddlSeller.Items.Insert(0,"==全国==");
解决方案五:
if(this.DropDownList1.Items[0].Text.Trim()=="所有省份"){this.DropDownList1.Items[0].Text="全国";}
解决方案六:
引用2楼的回复:
你是从数据库里面取的数据绑定DropDownList的?
我是用的js实现的下拉列表联动效果
解决方案七:
不在后台处理的话也可用javascript操作dropdownlist作出处理.
解决方案八:
<scriptsrc="JScript/jquery-1.7.2.min.js"type="text/javascript"></script><scripttype="text/javascript"language="javascript">$(function(){$("#dropTestoption[value='0']").remove();$("#dropTest").prepend("<optionvalue='0'>全国</option>");$("#dropTest").get(0).selectedIndex=0;});</script></head><body><formid="form1"runat="server"><asp:DropDownListID="dropTest"runat="server"><asp:ListItemText="所有省份"Value="0"></asp:ListItem><asp:ListItemText="湖北省"Value="1"></asp:ListItem><asp:ListItemText="河北省"Value="1"></asp:ListItem><asp:ListItemText="河南省"Value="1"></asp:ListItem></asp:DropDownList></form></body></html>
解决方案九:
引用7楼的回复:
HTMLcode<scriptsrc="JScript/jquery-1.7.2.min.js"type="text/javascript"></script><scripttype="text/javascript"language="javascript">$(function(){$("#dropTestoption……
借用狼王的测试数据<htmlxmlns="http://www.w3.org/1999/xhtml"><headrunat="server"><title>无标题页</title><scripttype="text/javascript">window.onload=function(){vardropTest=document.getElementById("dropTest");dropTest.options[0].text="全国";}</script></head><bodystyle="height:2000px;"><selectname="dropTest"id="dropTest"><optionvalue="0">所有省份</option><optionvalue="1">湖北省</option><optionvalue="1">河北省</option><optionvalue="1">河南省</option></select></body></html>
解决方案十:
<scripttype="text/javascript">functiontest(){document.getElementById("dropTest").options[0].text="全国";}</script><bodystyle="height:2000px;"onload="test()"><selectname="dropTest"id="dropTest"><optionvalue="0">所有省份</option><optionvalue="1">xxx</option></select>