當我在我的頁面中單擊註銷時,它將針對twitter註銷調用logout.php。下面的代碼在子窗口中打開twitter註銷窗口,並刷新同一個父窗口進行註銷。從子窗口爲父窗口提供href url位置
此外,用戶點擊子窗口中的登出按鈕,他們從Twitter註銷。 我想要做的是,刷新時必須爲父窗口提供一個URL。
當父窗口刷新,它停留在URL 「www.example.com/sitename/index.php」。
我想更改URL爲 「http://example.com/sitename/index.php」。 由於我在我的網站的URL開始與WWW的問題
任何人都可以幫助我解決這個問題。在此先感謝
Logout.php
<?php
include("header.php");
header("Location:https://twitter.com/#!/logout");
?>
<script>
function refreshParent()
{
window.opener.location.href = window.opener.location.href;
if (window.opener.progressWindow)
{
window.opener.progressWindow.close()
}
window.close();
}
</script>
'ab = ab; //什麼?'重新加載會更乾淨,imo。 – raina77ow
http://forum.springsource.org/showthread.php?129299-Can-t-refresh-reload-parent-window 這是我從上面的URL爲父窗口刷新的編碼 – Rithu
您可以使用**窗口.opener.location.reload(真); **,你也可以解決你的域從Apache的WWW問題開始。 –