gpt4 book ai didi

javascript - 如何使用php在注销时删除浏览器的本地存储项

转载 作者:行者123 更新时间:2023-11-27 22:54:36 27 4
gpt4 key购买 nike

如何使用php在注销时删除浏览器的本地存储项。

我想使用 php 删除注销时所有保存的浏览器数据。

因为我只想在每次登录时显示 Bootstrap 警报框,而不是在每次页面刷新时显示 Bootstrap 警报框。

当用户注销时,它将再次重置。当用户再次登录时,它将显示。

我的代码如下所示

$(document).ready(function() {
if (localStorage.getItem('message1') != 'shown') {
$('#message1').toggleClass('in');
window.setTimeout(function() {
$("#message1").fadeTo(500, 0).slideUp(500, function() {
$(this).remove();
});
}, 10000);
localStorage.setItem('message1', 'shown')
}
});
.flyover {
margin-right: -400px;
overflow: hidden;
opacity: 0.9;
z-index: 1050;
transition: all 1s ease;
position: fixed;
top: 100px;
right: 20px;
width: 300px;
z-index: 2000;
}

.flyover.in {
margin-right: 10px;
}

.alert {
color: white ! important;
}

.alert.close {
font-size: 18px ! important;
font-weight: 300 ! important;
line-height: 18px ! important;
color: white ! important;
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
</head>
<body>
<div id="message1" class='alert bg-green flyover'><a href='#' class='close close-x' data-dismiss='alert' aria-label='close'><i class="fa fa-times text-white" aria-hidden="true"></i>
</a><strong>Successfully Logged In<br></strong>
<h3>Welcome,
<?php echo ucwords($adminRow['admin_name']); ?>
</h3>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>
</html>

最佳答案

我的解决方案是在登录页面添加脚本标签

<script type="text/javascript">
localStorage.clear();
</script>

关于javascript - 如何使用php在注销时删除浏览器的本地存储项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37739148/

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