gpt4 book ai didi

css - md-select 悬停打开选择选项

转载 作者:行者123 更新时间:2023-11-28 10:43:35 25 4
gpt4 key购买 nike

是否可以在鼠标悬停时展开 md-select?

例如,我希望这个状态选择在鼠标悬停时展开

http://codepen.io/anon/pen/vOmQgj

<md-select placeholder="State" ng-model="ctrl.userState">
<md-option ng-repeat="state in ctrl.states" value="{{state.abbrev}}">{{state.abbrev}}</md-option>
</md-select>

最佳答案

这目前不受支持,我有点怀疑它是否会被添加到 md-select 组件中 - 尽管您无论如何都应该在 Github 中打开一个票证并解释您的用例.

这个功能更有可能存在于今天添加的新 md-menu 组件中:https://material.angularjs.org/0.10.0-rc1/#/demo/material.components.menu

无论哪种方式,我都会打开 Github 票以进行讨论。


话虽这么说,但我整理了一个可能对您有用的快速解决方案。

更新的 CodePen:http://codepen.io/robertmesserle/pen/qdmQpp

这使用以下 HTML:

<md-select
placeholder="State"
ng-model="ctrl.userState"
ng-mouseenter="ctrl.handleMouseEnter($event)">
<!-- content -->
</md-select>

handleMouseEnter 方法:

this.handleMouseEnter = function (event) {
angular.element(event.target).triggerHandler('click');
}

关于css - md-select 悬停打开选择选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30723090/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com