首页 > 解决方案 > IE下拉菜单在点击时消失,需要鼠标向下

问题描述

我在 Chrome 或 Safari 中没有这个问题,这似乎是 IE (11) 特有的兼容性问题。当我单击下拉栏时,我的下拉列表会在消失之前扩展几分之一秒。为了让它持久,我需要按住/鼠标按下。选择选项也是一个问题。这是下拉列表的相关JS代码。

<select class="ng-valid" id="selection-timeframe.selector" aria-invalid="false" 
ng-click="$event.stopPropagation()" 
ng-model="layer.dropdown.selected" 
ng-options="timeframe.name for timeframe in layer.dropdown.timeframes" 
ng-change="layer.dropdown.selectLayer(layer.dropdown)"> 
...(options)... 
</select>

任何见解将不胜感激。

标签: javascriptangularjsinternet-explorerdropdown

解决方案


推荐阅读