我已经创建了一个使用用户名和密码的登录表单。当我开始输入用户名时,假设我已经输入了第一个字母“ 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();
?>
最佳答案
<input type="text" name="foo" autocomplete="off" />
只需关闭浏览器的自动完成功能即可!!
请参考-> Is autocomplete="off" compatible with all modern browsers?
关于php - 键入内容时在文本框中显示值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17296191/