0

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

就像这个:

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

1 回答 1

1

self你可以很容易地通过评估and来实现这一点top,然后使用replace()打破框架:

if (self !== top)
    top.location.replace(self.location.href)
于 2013-04-03T09:03:23.593 回答