我在Ajax更新面板中有一个服务器下拉列表。当我使用鼠标点击一个项目时,它会触发回发,但是当我单击向上/向下箭头来更改条目时,这不会触发。可能是什么原因?
答案 0 :(得分:10)
尝试将DropDownList控件的“ AutoPostBack ”属性设置为“ true ”。
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="true">
</asp:DropDownList>
有关详细信息,请参阅ListControl.AutoPostBack Property on MSDN
获取或设置一个值,该值指示当用户更改列表选择时是否自动发生到服务器的回发。
答案 1 :(得分:9)
试试这个:
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True"
OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" onKeyUp="this.blur();">
使用 onKeyUp =“this.blur();”当按下某个键时,控件将失去焦点,这将触发onChange事件。
答案 2 :(得分:0)
我认为如果您使用键盘触发事件,则必须离开控件。
答案 3 :(得分:0)
如果您希望它使用箭头键,则应使用客户端事件onKeyDown
。