gpt4 book ai didi

php - 键入内容后,值会出现在文本框中

转载 作者:行者123 更新时间:2023-11-28 20:26:27 25 4
gpt4 key购买 nike

我已经创建了一个登录表单,其中包含用户名和密码。当我开始输入用户名时,假设我输入了第一个字母“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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com