2
我在我的應用程序中使用了Angular Tooltip,並希望觸發焦點問題的工具提示,但遇到觸發此問題的問題。它適用於mouseover
和mouseleave
,但在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" />
我不知道我做錯了或失去了一些東西。任何形式的幫助將不勝感激。
我從來沒有使用這種依賴關係,但既然你有角度,你不能手動觸發'ng-click'事件的工具提示嗎?所以當你點擊你的輸入時,它會觸發一個自定義函數來調用你的工具提示。 – trichetriche
但重點可以與選項卡或進入導航..在這種情況下,ng點擊將無法正常工作 –