0
我有一個需要密碼的模式窗口。如果輸入的是空的話就不會有錯誤,我要顯示工具提示時有錯誤AngularJS Tooltip tooltip-is-open not working
<input type='password' class='form-control' id='password' ng-model='user.password' uib-tooltip='{{error_msg}}' tooltip-placement='right' tooltip-trigger='none' tooltip-is-open='true' tooltip-class='tooltip_error' tooltip-enable='{{error}}' autofocus>
目前的情況是,如果沒有錯誤,則提示不顯示在所有。一旦出現錯誤,它將顯示錯誤消息,但我必須將鼠標懸停在文本框上以顯示工具提示。與此同時,我已將tooltip-is-open
設置爲true
以對其進行測試,但目前無法使用。
任何想法?
當我刪除了'{}',它只是打印出「ERROR_MSG」,但布爾結果爲'提示,enable'不工作,因爲它應該。 –
@ J.Do:您必須將'error_msg'作爲$ scope屬性,例如像'$ scope.error_msg =「密碼中的錯誤'' – anoop
是的,這就是我以前的樣子,但它只在用{{} '。我仍然需要將鼠標懸停在文本框上以顯示工具提示。 –