2012-09-17 161 views
0

我有一個簡單的網頁,分爲三個iframe A,B,C。來自iframe的HTML刷新頁面

iframe B執行Ajax請求,它應該刷新頁面以重定向到我的登錄頁面。 顯然,登錄頁面僅在iframe B內發生。有一種方法可以完全重定向頁面?

回答

1

不會簡單檢查top.location的工作嗎?

<script type="text/javascript"> 
    <!-- 
     if (top.location!= self.location) { 
      top.location = self.location.href 
     } 
    //--> 
</script> 
+0

您的解決方案非常好。但是,如果我有這樣的配置:頂部 CeccoCQ

+0

你可以把你的代碼放在http://jsfiddle.net/ –

0

這應該有效。

<script> 
    Window.top.location = 'new url'; 
</script>