焦点的角度工具提示

时间:2016-11-10 10:33:00

标签: angularjs focus tooltip

我在我的应用程序中使用Angular Tooltip并希望在焦点上触发工具提示但是有问题触发它。它适用于mouseovermouseleave,但不适用于focus事件。

这就是我使用它的方式

<input type="password" tooltip-show-trigger="focus" tooltips tooltip-template="Password must include at least one upper case letter, one lower case letter, one numeric digit and one special character." id="Password" name="Password" class="form-control" placeholder="New Password" required autofocus ng-model="Password" />

我不知道我做错了什么或错过了什么。任何形式的帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

它可以帮助别人......

focus不是在焦点上触发角度工具提示的实际事件。根据{{​​3}},它实际上是focusinfocusout。它解决了我的问题。

 tooltip-show-trigger="focusin" tooltip-hide-trigger="focusout"