gpt4 book ai didi

html - 指定密码管理器自动填充的输入

转载 作者:行者123 更新时间:2023-12-05 06:07:21 25 4
gpt4 key购买 nike

我有一个包含多个输入的表单,但在自动填充时,密码管理器总是在密码上方的第一个输入中输入数据。我可以告诉它在特定输入中输入数据吗?

代码示例:

<input placeholder="Your email" type="email"/>
<input placeholder="You fb id" type="text" />
<input placeholder="Your password" type="password"/>

最佳答案

Chrome 可能认为您的电子邮件和文本输入相同,因此它会自动填充它们。因此,我们将在其中一个输入上放置一个不相关的“类型”。

<input placeholder="Your email" type="email"/>
<input placeholder="You fb id" type="url" />
<input placeholder="Your password" type="password"/>

我们设置邮箱类型为email,fb id为url,密码类型为password。

关于html - 指定密码管理器自动填充的输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65486403/

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