【发布时间】:2019-12-30 09:23:29
【问题描述】:
如何在关闭角度材料中的多选下拉菜单时触发事件? 这是我的 HTML 模板
<mat-select multiple
(focusout)="triggerEvent($event)">
<mat-option *ngFor="let option of templateOptions"[value]="option">
{{option.name}}
</mat-option>
</mat-select>
</mat-form-field>
截至目前,每个选项的选择都会触发事件。我希望在用户完成选择所有值并在外部单击时触发它。我也尝试过模糊,但结果相同。
【问题讨论】:
标签: javascript jquery angular dom angular-material