作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用 Angular Material 创建的密码字段。那里有一个密码可见性切换按钮。如果它是一个简单的按钮,我可以设置 tabindex="-1",但 tabindex 不适用于“mat-pass-toggle-visibility”
<mat-form-field appearance="fill" style="width: 100%;" class="input-custo-design">
<mat-label>Password</mat-label>
<mat-pass-toggle-visibility #toggle matSuffix></mat-pass-toggle-visibility>
<input matInput [type]="toggle.type" placeholder="Password" formControlName="pass" #passwordWithValidation />
<mat-error *ngIf="signupController.pass.errors?.required">Password is required
</mat-error>
</mat-form-field>
我有一个 github 链接 mat-password ,这个问题在哪里,但目前我能以某种方式解决这个问题吗??
在 chrome 开发工具中,我可以看到“mat-pass-toggle-visibility”最终只创建了一个按钮。所以我们可以设置任何指令或类似的东西。
最佳答案
对于我的用例,我有另一种解决方法:使用普通按钮类
<mat-form-field appearance="fill" style="width: 100%;" class="input-custo-design">
<mat-label>Password</mat-label>
<input matInput [type]="hideSignUp ? 'password' : 'text'" placeholder="Password" formControlName="pass" #passwordWithValidation />
<button
type="button"
mat-icon-button
matSuffix
(click)="hideSignUp = !hideSignUp"
[attr.aria-label]="'Hide password'"
[attr.aria-pressed]="hide"
tabindex="-1"
>
<mat-icon>{{
hideSignUp ? "visibility_off" : "visibility"
}}</mat-icon>
</button>
<mat-error *ngIf="signupController.pass.errors?.required">Password is required</mat-error>
</mat-form-field>
关于html - 将 tabindex 设置为 Angular 材料元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63293492/
我正在尝试在 Rails 中构建我的第一个 api。为此,我想使用 Angular 作为前端,使用 ruby 作为后端。我设法让 Angular 工作,但由于某种原因我无法让 Angular Ma
我是一名优秀的程序员,十分优秀!