ng-focus和ng-blur事件未在Angularjs中触发

<input type='text' ng-focus='tryFunc()'> </input>

tryFunc()当输入框处于焦点状态时,不会调用该函数。

我包含jQuery.min.js在文件中,它是在angular.min.js

jQuery是v1.10.2版和Angular.js" title="Angular.js">Angular.js是v1.0.7版之前。

可能会发生什么?

回答:

ngFocus在Angular 1.0.7上不可用。在Angular 1.2上可用。

您可以创建自己的ngFocus指令,这非常简单,请在此处查看:

https://gist.github.com/eliotsykes/5394631

以上是 ng-focus和ng-blur事件未在Angularjs中触发 的全部内容, 来源链接: utcz.com/qa/416495.html

回到顶部