通常由以下代码完成:
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中执行此操作。