我创建了一个用户名和密码的登录表单。当我开始输入用户名时,假设我输入了第一个字母“a”,那么在文本框下面出现了很多以“a”开头的用户名,我怎么能清除这个数据。 我发现我们可以使用浏览器设置清除,例如转到工具 - >清除浏览数据 - >删除Cookie,清空缓存, 但我想知道是否有任何方法可以找到使用编程的解决方案。
如果您确认我找到的解决方案是正确还是错误,我将很高兴(此工具 - >清除浏览数据 - >删除Cookie,清空缓存)。
我从论坛中找到了一个编程解决方案,我很想知道上面的解决方案
<?php
// Initialize the session.
// If you are using session_name("something"), don't forget it now!
session_start();
// Unset all of the session variables.
$_SESSION = array();
// If it's desired to kill the session, also delete the session cookie.
// Note: This will destroy the session, and not just the session data!
if (ini_get("session.use_cookies")) {
$params = session_get_cookie_params();
setcookie(session_name(), '', time() - 42000,
$params["path"], $params["domain"],
$params["secure"], $params["httponly"]
);
}
// Finally, destroy the session.
session_destroy();
?>
答案 0 :(得分:3)
<input type="text" name="foo" autocomplete="off" />
只需要关闭浏览器自动完成功能!!!就是这样
请参阅 - &gt; Is autocomplete="off" compatible with all modern browsers?
答案 1 :(得分:0)
将输入文本的autocomplete
属性设置为off
,如下所示: -
<input type="text" autocomplete="off" ............ />