gpt4 book ai didi

html - Google Chrome 指定一个文本字段作为密码字段

转载 作者:行者123 更新时间:2023-12-05 04:30:43 24 4
gpt4 key购买 nike

我有一个基本文本字段,但 Google Chrome 将其指定为密码字段。

<form [formGroup]="formBuilder">

<p>
<mat-form-field appearance="fill">
<mat-label>Title</mat-label>
<input matInput placeholder="Type a title" formControlName="title">
</mat-form-field>
</p>

<p>
<mat-form-field appearance="fill">
<mat-label>Description</mat-label>
<textarea matInput></textarea>
</mat-form-field>
</p>

<p>
<mat-form-field appearance="fill">
<mat-label>Label of a detail</mat-label>
<input matInput type="text"> <!-- THE PROBLEM -->
</mat-form-field>

<mat-form-field appearance="fill">
<mat-label>Description of a detail</mat-label>
<input matInput type="text">
</mat-form-field>
</p>

</form>

这就是我点击那个输入框时的样子:

enter image description here

我在 StackBlitz 上尝试过相同的代码但它看起来不错,我没有看到那里的问题。

我在 localhost:4200 上运行该页面。这个字段怎么是密码字段??

最佳答案

当我将 ID 添加到输入字段后,我的问题就解决了。

<mat-form-field appearance="fill">
<mat-label>Label of a detail</mat-label>
<input id="detail-label" matInput type="text">
</mat-form-field>

<mat-form-field appearance="fill">
<mat-label>Description of a detail</mat-label>
<input id="detail-description" matInput type="text">
</mat-form-field>

关于html - Google Chrome 指定一个文本字段作为密码字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71981188/

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