0

我有一个 ASP 下拉列表打开然后单击立即折叠。我在另一个具有相同 CssClass 的页面上使用下拉菜单,它工作正常(第一次单击展开 DDL,第二次单击折叠它)。有人知道会发生什么吗?我将不胜感激任何建议或意见。

<label>
   <asp:RadioButton ID="rbToAccount" runat="server" GroupName="rbTo" />
   Account
   <asp:DropDownList ID="ddlToAccount" runat="server" CssClass="span4 m-wrap">      
   </asp:DropDownList>
</label> 
4

2 回答 2

0

试试这个 :

   <label></label> 
   <asp:RadioButton ID="rbToAccount" runat="server" GroupName="rbTo" />
   Account
   <asp:DropDownList ID="ddlToAccount" runat="server" CssClass="span4 m-wrap">      
   </asp:DropDownList>
于 2013-11-01T20:20:41.443 回答
0

该事件是否与 Jquery 函数相关联?听起来在下拉列表更改时会导致回发,然后将页面刷新到原始状态。尝试OnClientClick="return false"作为属性添加到 ddl 控件

于 2013-11-01T20:23:56.143 回答