我有下拉列表,并且将对此下拉选择的索引更改事件进行一些操作,但是从 IE9 每次触发选择的索引更改事件时,都会通过键盘按下键。这是我的下拉列表,
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:DropDownList ID="drpRelocatedCountry" OnSelectedIndexChanged="drpRelocatedCountry_OnSelectedIndexChanged"
AutoPostBack="true" runat="server" TabIndex="17"></asp:DropDownList>
</ContentTemplate>
</asp:UpdatePanel>
向下键应该是从下拉列表中选择下一个值,以在选项卡或转到其他控件之前不触发选定的索引更改事件。