gpt4 book ai didi

html - 如何禁用输入建议?

转载 作者:技术小花猫 更新时间:2023-10-29 12:12:43 26 4
gpt4 key购买 nike

我试图阻止推荐出现在我创建的输入框中。

<input type="text" class="form-control" name="message" id="msg" 
placeholder="Type a message" autocomplete="false">

但即使使用 autocomplete="false" 我仍然得到以下信息:

enter image description here

我不想让推荐出现在输入框上。

最佳答案

我相信你应该尝试使用 "off"而不是 "false" .

autocomplete="off"

在给定场景的上下文中,尝试以下代码片段

<input type="text" class="form-control" name="message" id="msg" 
placeholder="Type a message" autocomplete="off">


如果您的输入包含在 <form> 中您可以在表单上使用此属性而不是每个人 <input> .

It tells the browser not to save data inputted by the user for later autocompletion on similar forms, though heuristics for complying vary by browser.

Here is the reference .

关于html - 如何禁用输入建议?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55987189/

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