Angular Material 输入 Select 全部点击?

Angular Material Input Select All on Click?

非常简单的问题。当我点击一个输入字段时,我想 select-all 文本,所以当我开始输入时,它会覆盖之前的内容。有人知道怎么做吗?

如果您正在使用 angular material 1.x,您可以使用 md-select-on-focus

<md-input-container>
  <label>Auto Select</label>
  <input type="text" md-select-on-focus>
</md-input-container>

这篇link可以帮到你md-select-on-focus

似乎以下应该有效:

<input matInput (click)="$event.target.select()">

Example

最适合我的是 onfocus="this.select()"

<input matInput onfocus="this.select()">