-1

我想关闭选项卡并销毁 php.ini 中的会话。

我有这段代码,但效果不好。

<?php
session_start();
session_destroy();
?>

<script language="javascript"> 

setTimeout("self.close();",10000) 

</script>

帮忙解决,谢谢。

编辑:它没有按预期关闭窗口。

4

2 回答 2

1
function openWin()
{
myWindow=window.open("","","width=200,height=100");
myWindow.document.write("<p>This is 'myWindow'</p>");
}

function closeWin()
{
myWindow.close();
}
于 2013-05-21T12:00:43.207 回答
1

希望你尝试过使用firefox浏览器进行测试

在 Firefox 中,您只能通过 JavaScript 关闭已通过脚本 window.open() 调用打开的窗口。

请参考以下链接

关闭火狐

试试 Internet Explorer。

于 2013-05-21T12:28:13.807 回答