我正在使用以下代码:
<form action="https://google.com/search" method="get">
<input type="text" name="q" />
允许我从自定义首页使用Google搜索。但是,每次搜索之后,似乎都在缓存我的搜索字词。
当我单击表单返回HTML页面时,它会将以前的搜索作为自动填充下拉框。
我想禁用此功能并停止页面缓存。
谢谢
答案 0 :(得分:0)
应该像在表单元素中添加autocomplete =“ off”一样简单。
<form action="https://google.com/search" method="get" autocomplete="off"></form>