在我的应用程序中,我想在组件加载时自动将焦点放在表单的第一个字段上。任何人都可以指导如何实现这一点而不重复,因为我想在我的应用程序中的每个表单(活动表单)上这样做。
答案 0 :(得分:5)
您应该使用指令来实现此行为。
这将告诉您如何操作:https://plnkr.co/edit/ttxCP7vCLkLtNb3Xiaah?p=preview
import {Component, NgModule, Directive, ElementRef, Renderer} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
@Directive({
selector: 'form[anyNameHere]'
})
export class SelectFirstInputDirective {
constructor(private _eRef: ElementRef, private _renderer : Renderer) { }
private _getInputElement(nativeElement: any): any {
if (!nativeElement || !nativeElement.children) return undefined;
if (!nativeElement.children.length && nativeElement.localName === 'input' && !nativeElement.hidden) return nativeElement;
let input;
[].slice.call(nativeElement.children).every(c => {
input = this._getInputElement(c);
if (input) return false; // break
return true; // continue!
});
return input;
}
ngAfterViewInit() {
let formChildren = [].slice.call(this._eRef.nativeElement.children);
formChildren.every(child => {
let input = this._getInputElement(child);
if (input) {
this._renderer.invokeElementMethod(input, 'focus', []);
return false; // break!
}
return true; // continue!
});
}
}
@Component({
selector: 'my-app',
template: `
<div>
<h2>Hello {{name}}</h2>
<form anyNameHere>
<div class="form-group">
<input hidden formcontrolname="firstName" type="text" class="form-control input-sm ng-pristine ng-valid ng-touched" placeholder="First Name" id="firstName">
<label class="col-sm-3 control-label" for="firstName">Name</label>
<div class="col-sm-9 form-inline">
<div class="form-group">
<div class="col-sm-12">
<input formcontrolname="firstName" type="text" class="form-control input-sm ng-pristine ng-valid ng-touched" placeholder="First Name" id="firstName">
</div>
</div>
<div class="form-group">
<div class="col-sm-12">
<input formcontrolname="lastName" type="text" class="form-control input-sm ng-untouched ng-pristine ng-valid" placeholder="Last Name" id="lastName">
</div>
</div>
</div>
</div>
</form>
</div>
`,
})
export class App {
constructor() {
this.name = 'Angular2'
}
}
@NgModule({
imports: [ BrowserModule ],
declarations: [ App, SelectFirstInputDirective ],
bootstrap: [ App ]
})
export class AppModule {}
答案 1 :(得分:5)
您可以通过简单地将“autofocus”属性添加到输入元素(如。
)来实现此目的
<input class="form-control" [formControl]="name" autofocus>
答案 2 :(得分:2)
使用Angular 4时,Renderer已被弃用,因此指令方式已不复存在。但无论如何你总是可以使用“快速而肮脏”的方式:添加对你想要设置焦点的元素的引用,然后使用<reference-name>.focus()
<form [formGroup]="form" (ngSubmit)="onSubmit(form, $event); needFocus.focus()">
<input placeholder="" formControlName="name" #needFocus>
</form>
答案 3 :(得分:1)
HTML autofocus attribute正是这样做的
<input type="text" name="fname" autofocus>
答案 4 :(得分:0)
import { AfterViewInit, Directive, ElementRef } from '@angular/core';
@Directive({
selector: 'form[appFocusFirstInput]'
})
export class FocusFirstInputDirective implements AfterViewInit {
constructor(
private element: ElementRef
) {
}
ngAfterViewInit(): void {
const input = this.element.nativeElement.querySelector('input');
if (input) {
input.focus();
}
}
}
答案 5 :(得分:-1)
以下方法可以使用=&gt; 1.您可以通过autoFoucs指令OR执行此操作 2.提供对您的控件的引用,如
<input hidden #firstName formcontrolname="firstName" type="text" class="form-control input-sm ng-pristine ng-valid ng-touched" placeholder="First Name" id="firstName">
然后在ts文件中声明如下
export class App implements OnInit{
@ViewChild('firstName') firstNameTextbox;
constructor() {
}
ngOnInit() {
this.firstNameTextbox.nativeElement.focus();
}
}