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.
我设置了自动完成属性。现在,当有人关闭浏览器时,我想清除缓存。
由于自动完成属性,它记录了较早的数据。我想清除数据。它应该只记录该会话的数据。
我知道,这不是一个好习惯。但是,我只是要求知识。
将不胜感激帮助...
您需要设置该autocomplete="off"属性,然后使用 cookie 来存储用户在该会话期间输入的值。
autocomplete="off"
如果您没有为 cookie 提供过期日期/时间,它“应该”在浏览器关闭后自行删除它。
之后,您只需要在用户输入值时实现一个基于 javascript 的自动完成下拉菜单。