如何阻止占位符作为角度8垫选择中的标签浮动

时间:2019-08-26 09:34:32

标签: angular-material angular7 angular8

我有一个matselect字段,我不希望占位符作为标签浮动,我只想将其用作占位符,我尝试给floatPlaceholder =“ never”也尝试作为标签并给定floatLabel =“ never”,但是仍然它漂浮。需要建议

 <mat-form-field>
    <mat-select placeholder="Select Function" floatPlaceholder="never">
     <mat-option *ngFor="let option of functionOptions" 
  [value]="option.name">    
       {{option.name}}
     </mat-option>
   </mat-select>
</mat-form-field>

1 个答案:

答案 0 :(得分:1)

请参见stackblitz中的示例。

您可以玩打开/关闭事件并手动更改占位符值。