gpt4 book ai didi

angular - 隐藏密码字段内的显示眼睛图标 angular 6

转载 作者:行者123 更新时间:2023-12-04 16:42:29 25 4
gpt4 key购买 nike

该功能运行良好,但到目前为止我都是使用复选框来完成的我只需要有关密码输入字段内的眼睛图标的帮助如果可能,没有 Bootstrap 或 Font Awesome 并感谢

      myFunction() {
let x : any = document.getElementById("inputPassword");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}

<input [(ngModel)]="password" type="password" id="inputPassword" name="password"
placeholder="{{'Password' | translate}}" required>
<input type = "checkbox" (click)="myFunction()">

最佳答案

我会按照官方记录的那样去做:

不要在组件中设置类型,而是为类型属性使用动态值。

HTML:

<input placeholder="Enter your password" [type]="hide ? 'password' : 'text'">

TS代码:

hide : boolean = true;

myFunction() {
this.hide = !this.hide;
}

Working_Demo_with_eye_icon

关于angular - 隐藏密码字段内的显示眼睛图标 angular 6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57267103/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com