在Angular 8中,你可以通过以下步骤在模板驱动的表单中点击“clear”按钮来清除文本字段:
import { FormsModule } from '@angular/forms';
并将FormsModule添加到@NgModule装饰器的imports数组中。
<input type="text" [(ngModel)]="username" name="username">
<button (click)="clearInput()">Clear</button>
export class YourComponent {
username: string;
clearInput() {
this.username = '';
}
}
这样,当点击"clear"按钮时,clearInput方法将被触发,将文本字段的值重置为空字符串,从而实现清除文本字段的效果。
请注意,以上代码示例仅针对清除单个文本字段。如果你有多个文本字段需要清除,你可以按照相同的模式为每个字段添加绑定和clearInput方法。
领取专属 10元无门槛券
手把手带您无忧上云