Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想让一个元素在选项卡焦点上显示工具提示以及默认的mousenter. 目前我的重点工作在使用tooltip-trigger="'focus'",但现在工具提示只在focus. 我希望它也可以打开hover元素。我目前正在使用uib-tooltip
mousenter
tooltip-trigger="'focus'"
focus
hover
uib-tooltip
您必须为每个触发事件添加一个空格作为分隔符并将其包裹在单引号中。让我意识到需要单引号作为我所基于的示例之一,并没有将属性值包装在一个中。
tooltip-trigger="'mouseenter focus'"