我有一个下拉列表,其中包含以下列表项
<asp:DropDownList ID="ddlsendmail" runat="server" Width="250px" AutoPostBack="true"
OnSelectedIndexChanged="ddlsendmail_SelectedIndexChanged" onchange="test();">
<asp:ListItem>--select--</asp:ListItem>
<asp:ListItem Value="Members">Members</asp:ListItem>
<asp:ListItem Value="NonMembers">Non-Members</asp:ListItem>
<asp:ListItem Value="Location">Location</asp:ListItem>
</asp:DropDownList>
当我选择位置时,另一个下拉列表与Chennai(100),Mumbai(156),Banglore(132)等值绑定,
<tr id="tdsendmaillocation" runat="server" visible="false">
<td>
Location:
</td>
<td>
<asp:DropDownList ID="ddlsendmaillocatiom" runat="server" Width="250px">
</asp:DropDownList>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" SetFocusOnError="true" ValidationGroup="group"
ControlToValidate="ddlsendmaillocatiom" InitialValue="0" runat="server" Display="Dynamic"><img src="images/error.png" title="Required Field" border="0" /></asp:RequiredFieldValidator>
</td>
</tr>
现在我想仅仅从上面的列表项中得到(100),(156),(132)..红色......
答案 0 :(得分:0)
一般来说,你不能这样做。你不能像往常一样选择方框中的样式,选项。有替换插件看起来像SELECT,但实际上是由标准的HTML元素组成,可以像div元素一样设置样式。