如何突破iframe?

时间:2014-04-20 09:51:59

标签: iframe breakout

我有一个在iframe中运行的网站,我希望它突破iframe,并重定向到另一个网站,应该打开具有自己网址的整个新网站,而不是维护当前的网址或iframe。

我试过了

<meta http-equiv="refresh" content="0"; URL="http://www.newsite.com/newurl.html">
and
header ('Location:http://www.newsite.com/');
他们没有为我工作。

1 个答案:

答案 0 :(得分:2)

试试这个:

<script type="text/javascript">
    if (top.location!= self.location) {
       top.location = 'http://www.newsite.com/';
    }
</script>

如果这在iframe中运行,它会将父窗口重定向到http://www.newsite.com/