selectedIndex事件在mozilla firefox中鼠标悬停选项或从上到下移动下拉列表中的光标时触发
本文关键字:移动 下拉列表 光标 从上到下 选项 mozilla 事件 firefox 鼠标 selectedIndex 悬停 | 更新日期: 2023-09-27 18:29:03
我在firefox中遇到了下拉列表的问题。当我用鼠标悬停下拉项目或将光标移动到项目上时,所选的下拉索引事件会在firefox中触发,我在IE、chrome中没有遇到这个问题。
.aspx:
Collapse | Copy Code
<asp:DropDownList ID="ddlTempGroups" runat="server" onselectedindexchanged="ddlTempGroups_SelectedIndexChanged">
<asp:ListItem Text="-" Value="-" >
<asp:ListItem Text="type" Value="type" >
<asp:ListItem Text="date" Value="date" >
</asp:DropdownList>
.cs
protected void ddlTempGroups_SelectedIndexChanged(object sender, EventArgs e)
{ }
这似乎是一个已知的错误。正如本线程中所述,您可以尝试:
ng-mouseleave="showSelect=false"