我有一個框架內的aspx頁面。我想重定向到一個新的頁面,但在頁面加載之前,打破框架。我使用這個js代碼加載之前打破框架頁面
window.onload = TimeOutRedirect;
function TimeOutRedirect()
{
try
{
if (self.parent.frames.length != 0)
self.parent.location=document.location;
}
catch (Exception) {}
}
這工作,但一直等到頁面加載,所以你可以看到頁面在框架中它打破之前。
我嘗試使用另一頁作爲中間人,但我無法在頁面加載後重定向。