dropdownlist控件下有的项不允许选择可以吗?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dropdownlist控件下有的项不允许选择可以吗?相关的知识,希望对你有一定的参考价值。
如题!asp.net(c
#)dropdownlist控件下有的项不允许选择可以吗?
比如说下拉下面有 “新闻”
“体育”
“娱乐”
但”娱乐“ 这项是不能选的
我尝试设置娱乐这项功能为不可用,即
ENABLED = FALSE
结果是娱乐这项没有被显示在列表中
不过,也或许我知识不够,有待继续学习 参考技术A 你可以使用客户端的控件:<select>
如:
<select>
<option>新闻</option>
<optgroup label='娱乐'></OPTGROUP>
<option>体育</option>
</select>本回答被提问者采纳
怎么用js来控制dropdownlist
比如有个dropdownlist第一项是“请选择,后面是其他内容,我选了其他内容,然后点一个按钮调用js使他变成“请选择”
参考技术A function onc()form1.DropDownList1.value="请选择";
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>请选择</asp:ListItem>
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem Selected="True"></asp:ListItem>
</asp:DropDownList>
<input id="Button1" type="button" value="button" onclick="onc()" /></div>本回答被提问者采纳 参考技术B function
onc()
form1.DropDownList1.value="请选择";
<asp:DropDownList
ID="DropDownList1"
runat="server">
<asp:ListItem>请选择</asp:ListItem>
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem
Selected="True"></asp:ListItem>
</asp:DropDownList>
<input
id="Button1"
type="button"
value="button"
onclick="onc()"
/></div>
以上是关于dropdownlist控件下有的项不允许选择可以吗?的主要内容,如果未能解决你的问题,请参考以下文章
如何实现DropDownList控件的某一项只能被选择一次?
webform复合控件以及用来做年月日选择日期的DropDownList控件