gpt4 book ai didi

javascript - UI Angular Bootstrap typeahead 隐藏第一个选项

转载 作者:行者123 更新时间:2023-11-30 12:01:48 24 4
gpt4 key购买 nike

我正在使用 UI Angular Bootstrap typeahead 功能。我想隐藏第一个选项。在这里,我想对用户隐藏选项 Alaska。如何做到这一点?

refer this

最佳答案

如果你总是想隐藏第一个结果,那么只需在输入前放置一个类,如 .hide-first-result 然后使用 css 来隐藏它:

.hide-first-result ul > li:first-child { display: none; }

例如:

<span class="hide-first-result">
<input type="text" ng-model="selected" uib-typeahead="state for state in states | filter:$viewValue | limitTo:8" class="form-control">
</span>

关于javascript - UI Angular Bootstrap typeahead 隐藏第一个选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36457616/

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