在表单加载时将焦点放在特定字段上 - angularjs

时间:2014-02-20 19:29:33

标签: angularjs

民间,

我有一个包含多个输入字段的表单。当表单加载时,我希望焦点转到特定字段。

所以请考虑这样的表格:

<form>
  <input type="text" ng-model="fname" get-focus>
  <input type="text" ng-model="lname">
</form>

我已经写了一个基本指令:

.directive('GetFocus',function(){
  return {
    link: function(scope,element,attrs) {
      //what function call to use here ?

    }   
  } 
});

0 个答案:

没有答案