Fop*_* G. 2 angular-material2 angular
我正在尝试使用inputangular-material2。如何防止focus在input如果我按知名度按钮?
在这里你可以看到它是如何工作的:material.angular.io
<mat-form-field>
<input
#mPswd
matInput
type="password"
placeholder="??? ??????-??????"
[type]="hide ? 'password' : 'text'"
>
<mat-icon
class="unselectable"
matSuffix
(click)="hide = !hide"
>
{{hide ? 'visibility' : 'visibility_off'}}
</mat-icon>
</mat-form-field>
Run Code Online (Sandbox Code Playgroud)
单击图标时使用stopPropagation
// component.html
<mat-icon class="unselectable" matSuffix (click)="onIconClick($event)"></mat-icon>
// component.ts
onIconClick(event){
event.stopPropagation();
this.hide = !this.hide;
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3314 次 |
| 最近记录: |