gpt4 book ai didi

angular - 在 MatStepper 进入下一步后焦点输入

转载 作者:太空狗 更新时间:2023-10-29 17:51:25 24 4
gpt4 key购买 nike

在第一步单击“下一步”按钮后,如何以编程方式将焦点设置为“地址”输入,以便在从第 1 步(“填写您的姓名”)转到第 2 步(“填写您的地址”)之后。

https://stackblitz.com/angular/onnbkqrydrg?file=app%2Fstepper-overview-example.ts https://material.angular.io/components/stepper/overview

enter image description here

enter image description here

这是我想要实现的:

enter image description here

我已经在试验 MatStepper 的 selectionChange 事件,但它似乎在步骤 2 可见之前被触发,所以它不起作用。

最佳答案

您使用选择 Change 事件走在正确的道路上。查看 fork 的 StackBlitz:

StackBlitz

您要做的是为您的输入元素分配一个id,该元素可以与步进器的选定索引关联使用,例如:

  <mat-step [stepControl]="firstFormGroup">
<form [formGroup]="firstFormGroup">
<ng-template matStepLabel>Fill out your name</ng-template>
<mat-form-field>
<input id="input0" matInput placeholder="Last name, First name" formControlName="firstCtrl" required>
</mat-form-field>
<div>
<button mat-button matStepperNext>Next</button>
</div>
</form>
</mat-step>
<mat-step [stepControl]="secondFormGroup">
<form [formGroup]="secondFormGroup">
<ng-template matStepLabel>Fill out your address</ng-template>
<mat-form-field>
<input id="input1" matInput placeholder="Address" formControlName="secondCtrl" required>
</mat-form-field>
<div>
<button mat-button matStepperPrevious>Back</button>
<button mat-button matStepperNext>Next</button>
</div>
</form>
</mat-step>

然后通过使用选择 (selectionChange) 事件,您可以在等待它显示在 DOM 中后将焦点设置在输入元素上:

export class StepperOverviewExample implements AfterViewInit {
isLinear = false;
firstFormGroup: FormGroup;
secondFormGroup: FormGroup;

public targetInput = 'input0';

constructor(private _formBuilder: FormBuilder) { }

ngOnInit() {
this.firstFormGroup = this._formBuilder.group({
firstCtrl: ['', Validators.required]
});
this.secondFormGroup = this._formBuilder.group({
secondCtrl: ['', Validators.required]
});
}

ngAfterViewInit() {
this.setFocus();
}

private setFocus() {
let targetElem = document.getElementById(this.targetInput);
setTimeout(function waitTargetElem() {
if (document.body.contains(targetElem)) {
targetElem.focus();
} else {
setTimeout(waitTargetElem, 100);
}
}, 100);
}

onChange(event: any) {
let index = String(event.selectedIndex);
this.targetInput = 'input' + index;
this.setFocus();
}
}

关于angular - 在 MatStepper 进入下一步后焦点输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49011701/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com