Angular 焦点工具提示

Angular Tooltip on Focus

我在我的应用程序中使用 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" />

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

它可能对其他人有帮助...

focus 不是触发 angular 焦点工具提示的实际事件。根据this issue discussion其实是focusinfocusout。它解决了我的问题。

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