小编Fop*_* G.的帖子

如何防止专注于输入?

我正在尝试使用inputangular-material2。如何防止focusinput如果我按知名度按钮

在这里你可以看到它是如何工作的: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)

angular-material2 angular

2
推荐指数
1
解决办法
3314
查看次数

标签 统计

angular ×1

angular-material2 ×1