gpt4 book ai didi

ui-select - 在 ui-select 中使用 title 属性

转载 作者:行者123 更新时间:2023-12-04 02:10:50 27 4
gpt4 key购买 nike

我遇到这样一种情况,即要选择的文本太长,不适合列表宽度或所选字段。所以至少我需要在鼠标悬停时使用 span 中的 title 属性显示完整名称。

我试过这个:

   <ui-select ng-model="f.fieldb.value">
<ui-select-match>
<span ng-bind="$select.selected.nm" title="$select.selected.nm"></span>
</ui-select-match>
<ui-select-choices repeat="item in (fieldsList | filter: $select.search)">
<span ng-bind="item.nm" title="f.item.nm"></span>
</ui-select-choices>
</ui-select>

但我明白了(请注意,鼠标指针旁边显示的文本不正确):

enter image description here

enter image description here

是否可以获得正确的名称?

最佳答案

您需要像这样将它们作为表达式求值:

title="{{f.item.nm}}"

您当前将标题设置为字符串“f.item.nm”,而不是项目对象中保存的 nm 值

关于ui-select - 在 ui-select 中使用 title 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38683032/

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