我有一个页面需要重定向到另一个页面'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>