在我的网站中,标题包含twitter的注销部分。这些注销功能中使用了三个文件。当用户单击注销时,它会打开twitter注销URL并刷新父窗口并转到chrome中的索引页面。
但是父窗口不会在firefox中刷新。即使在会话销毁之后,它也会显示注销,如果我们刷新页面手册,它会显示登录。任何人都可以帮我解决这个问题
的header.php
<li><a href="javascript:;" onclick="opennewwindow(); clearsession();">Logout</a></li>
function opennewwindow()
{
var mywin=window.open('twitlogout.php','chindhu','width=550,height=350');
}
function clearsession()
{
var req = GetXmlHttpObject();
req.onreadystatechange = function() {
if(req.readyState == 1) {
document.getElementById('status').innerHTML='<img src="images/ajax-loader.gif"/>';
}
if (req.readyState == 4 ) {
if( req.status == 200) {
document.getElementById('status').innerHTML=req.responseText;
}
else
{
alert("There was a problem while using XMLHTTP:\n" + req.statusText);
}
}
}
req.open("GET", "clearsession.php", true);
req.send(null);
}
function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
{
// code for IE7+, Firefox, Chrome, Opera, Safari
return new XMLHttpRequest();
}
if (window.ActiveXObject)
{
// code for IE6, IE5
return new ActiveXObject("Microsoft.XMLHTTP");
}
return null;
}
twitlogout.php
<?php
include("header.php");
header("Location:https://twitter.com/#!/logout");
?>
clearsession.php
<?php include("config/dbconfig.php");?>
<meta http-equiv="refresh" content="2;url=<?php echo URLPATH;?>">
<?php
session_start();
unset($_SESSION['id']);
unset($_SESSION['username']);
unset($_SESSION['oauth_provider']);
session_destroy();
?>
答案 0 :(得分:1)
您正在将clearsession.php
的结果添加到status元素中。元属性刷新需要在标题中,这可能是它从未调用的原因。
强制javascript重新加载页面的最佳方法是使用window.location.reload();
。你可以把它放在以下位置:
if( req.status == 200) {
document.getElementById('status').innerHTML=req.responseText;
setTimeout(window.location.reload, 2000); //reload after two seconds
}
我在重新加载之前使用两秒钟的超时,但您可以将其设置为您想要的任何内容。
答案 1 :(得分:0)
我们也可以在函数中添加“window.location ='我们的文件'”。但缺点是它在函数
中调用clearsession.php时显示URLfunction clearsession()
{
window.location="clearsession.php";
}