gpt4 book ai didi

html - 明确说明输入框不适用于用户名/登录名

转载 作者:太空宇宙 更新时间:2023-11-03 22:57:39 26 4
gpt4 key购买 nike

Chrome 会使用登录用户名自动填充网站表单上的一个框,当您提交表单时,它会要求保存登录信息。

我如何强制 Chrome 保留输入字段?

它为了自己的利益而试图变得太聪明。

<input type="text" placeholder="(Optional)" name="auth_code" />

它会自动填充登录用户名:

enter image description here

编辑:我尝试添加

autocomplete="off"

但该字段仍会在页面加载时自动填充登录用户名。

另一个注意事项:

我已经有了

value=""

但 Chrome 仍会自动填充它。

最佳答案

$(document).ready(function() {

$('#TheInput').val('');

setTimeout(function () {

$('#TheInput').val('');

}, 100);
});

此代码运行两次,以防出现特定于浏览器的问题。它肯定会清除输入并需要 jQuery,这对您来说可能是也可能不是问题。我还添加了一个 ID 来引用输入元素。

<input id="TheInput" type="text" placeholder="(Optional)" name="auth_code" />

关于html - 明确说明输入框不适用于用户名/登录名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37772650/

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