我在IE8中使用selected.js插件进行多选下拉列表。当我点击下拉列表选择选项时,下拉列表下方会打开一个选项列表。在鼠标上,它消失了,我无法选择它。它应该保持开放。
更新
这是我的下拉列表代码:
<asp:ListBox ID="ddlSegRequirement" runat="server" class="chosen" Style="width: 500px" SelectionMode="Multiple" data-placeholder="Select...">
<asp:ListItem Value="1">Logical segregation</asp:ListItem>
<asp:ListItem Value="2">Physical segregation</asp:ListItem>
<asp:ListItem Value="3">Other</asp:ListItem>
</asp:ListBox>
和jquery
$(".chosen").chosen();