0

我有一个 html 页面,在 GO 按钮上我写了重定向代码

window.location.replace(url);

我将此页面放在 iframe 中,单击 GO 按钮结果页面应该在现有页面中打开,替换浏览器的 url 但它仅在 iframe 中打开...我 <base target="_parent" />也尝试过,但没有运气

4

2 回答 2

1

window.top.location.href就是你要找的。

于 2013-09-06T05:43:58.917 回答
0

您的结果页面需要突破 iframe: http ://www.w3schools.com/js/tryit.asp?filename=tryjs_breakout

于 2013-09-06T05:43:52.777 回答