重定向页面'Onload'以在父页面中打开链接

时间:2017-06-26 22:27:46

标签: html redirect parent onload target

我有一个页面需要重定向到另一个页面'onload'。

但是,我需要在“父”中打开链接,而不是在iframe中打开。

以下解决方案无效。该链接会重定向,但仍会在iframe中打开。

我有任何有用的建议,我们将不胜感激。

    <!DOCTYPE html>
    <html>
    <head>
    </head>
    <body onload=location.href="http://www.somepage.com" target="_parent";>
    </body>
    </html>

更新:我这样解决了......

    <body>onload=window.top.location.href="http://www.rebelplanetnews.com";></body>

0 个答案:

没有答案