Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在搜索框中搜索一个词时,它会从完整的网站提供相关搜索,并显示搜索历史与搜索建议重叠。我有很多谷歌搜索但不知道如何解决这个问题。建议lzz。谢谢,莫妮卡
所有 WordPress 网站都name='s'为其搜索表单设置,因此您的浏览器将根据您在其他 WordPress 网站上输入的查询提出建议。
name='s'
您可以通过设置禁用它autocomplete='off'。
autocomplete='off'
例如: <input type="text" name="s" autocomplete="off" />
<input type="text" name="s" autocomplete="off" />