是否可以使用js防止iframe内容转移到主页面?

时间:2010-10-23 05:55:33

标签: javascript html iframe

通常由以下代码完成:

if ( window.parent.frames.length>0 )  {}  // check how many frames, if none do nothing
else {
   window.location="[new destination]";  // else change the current location
}

但我希望阻止iframe内容知道它在iframe上。 我正在编写一个php代理,内容将来自同一个域,我知道我可以选择使用服务器端代码逐个删除转义代码的实例,但也许可以选择在js中执行此操作。

1 个答案:

答案 0 :(得分:2)

问题甚至还有自己的维基百科页面http://en.wikipedia.org/wiki/Framekiller