0

在这里,我使用 Angular5 的登录表单使用角度材料表单。当应用程序启动时,登录表单占位符不能被覆盖。但是一旦我登录并注销,那么只有输入字段会被覆盖。截屏

<form [formGroup]="loginform" class="login-form">
  <mat-icon style="font-size: 30px ">account_circle</mat-icon>
  <mat-form-field class="example-full-width">
    <input matInput placeholder="Username" formControlName="userName">
  </mat-form-field>
  <br>
  <mat-icon style="font-size: 30px">lock_open</mat-icon>
  <mat-form-field>
    <input matInput placeholder="Enter your password" [type]="hide ? 'password' : 'text'" formControlName="password">
    <mat-icon matSuffix (click)="hide = !hide">{{!hide ? 'visibility' : 'visibility_off' }}</mat-icon>
  </mat-form-field>
  <button mat-raised-button color="primary" [disabled]="!loginform.valid" (click)="clicklogin();loginform.reset()">Login</button>
  <button mat-raised-button color="primary">cancel</button>
</form>



CSS File

 .login-form{
    top: 35%;
    border: 1px;
    border-style: double;
    position: absolute;
    width: 30%;
    border-radius: 5px;
    padding: 20px;
    left: 30%;
}
mat-form-field{
    width: 80%;
}
button{
    text-align: center;
    margin-left :17%;
}
mat-icon{
    float: left;
    line-height: 2;
    margin-right: 10px;
}
4

2 回答 2

0

它对我来说工作正常。

.login-form{
    top: 35%;
    border: 1px;
    border-style: double;
    position: absolute;
    width: 30%;
    border-radius: 5px;
    padding: 20px;
    left: 30%;
}
mat-form-field{
    width: 80%;
}
button{
    text-align: center;
    margin-left :17%;
}
mat-icon{
    float: left;
    line-height: 2;
    margin-right: 10px;
}
<form [formGroup]="loginform" class="login-form">
  <mat-icon style="font-size: 30px ">account_circle</mat-icon>
  <mat-form-field class="example-full-width">
    <input matInput placeholder="Username" formControlName="userName">
  </mat-form-field>
  <br>
  <mat-icon style="font-size: 30px">lock_open</mat-icon>
  <mat-form-field>
    <input matInput placeholder="Enter your password" [type]="hide ? 'password' : 'text'" formControlName="password">
    <mat-icon matSuffix (click)="hide = !hide"></mat-icon>
  </mat-form-field>
  <button mat-raised-button color="primary" [disabled]="!loginform.valid" (click)="clicklogin();loginform.reset()">Login</button>
  <button mat-raised-button color="primary">cancel</button>
</form>

于 2018-06-09T03:56:49.553 回答
0

您可以使用 mat-placeholder 并通过 CSS 轻松处理可见性

款式:

.placeholder.hide-ph {
    display: none;
  }

组件.ts:

<input 
  ...
  [value]="value"
  floatPlaceholder="never"
  (focus)="hidePlaceholder = true" // <== you need this
/>
 <mat-icon class="caret" matSuffix>arrow_drop_down</mat-icon>
 <mat-placeholder 
   class="placeholder" 
   [class.hide-ph]="!!value || hidePlaceholder" // <== and this to hide placeholder by css
 >
   {{ placeholder }}
 </mat-placeholder>
于 2020-02-01T23:10:58.717 回答