如何检测我的网站是在iframe并删除iframe?

时间:2013-04-03 09:01:27

标签: javascript jquery iframe

我想知道我怎么知道我的网站嵌入在iFrame中并删除iFrame以像往常一样加载我的网站地址栏中的网址!

就像这样:

<iframe src="http://varzesh3.com"></iframe>  

1 个答案:

答案 0 :(得分:1)

您可以通过评估selftop,然后使用replace()突破框架来轻松实现这一目标:

if (self !== top)
    top.location.replace(self.location.href)