AngularJS input自动聚焦

当我们在使用ionic进行开发的时候,使用angularjs中的ng-focus指令并没有效果。
比如当我们在需要点击某个按钮然后弹出输入框,并且需要自动聚焦到这个输入框的时候。如果使用angularjs的ng-focus指令,这样是没有任何效果的。
这时候就需要我们重写focus服务。
  .factory('focus', function ($timeout, $window) {
    return function (id) {
      $timeout(function () {
        var element = $window.document.getElementById(id);
        if (element)
          element.focus();
      });
    };
  })

 
  
 
  
 然后给输入框设置id 
  

最后在input对应的controller中注入focus
通过focus('inputFocus')对input进行自动聚焦。

你可能感兴趣的:(AngularJS,Ionic)