民间,
我有一个包含多个输入字段的表单。当表单加载时,我希望焦点转到特定字段。
所以请考虑这样的表格:
<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 ?
}
}
});