从服务器有没有办法知道我的页面正在 Iframe 中加载
我在我的网页中使用 sammy.js,如果有人在 IFrame(对于 IE)中使用此网页,它只会将整个页面重定向到 IFrame 的位置。所以,我在想是否有一种方法可以检查如果 IFrame 正在请求我的页面。如果是这种情况,那么我可以简单地禁用 sammy(更改与 top.location 一起播放的行)。
我认为当页面加载到 IFrame 中时,浏览器会发送更多标头。
I am using sammy.js in my webpage, and if someone uses this webpage in an IFrame (for IE), it will simply redirect the whole page to the location of the IFrame.So, I was thinking if there is a way to check if my page is being requested by an IFrame.If that is the case, then I can simply disable sammy(change lines that play with top.location).
I was thinking that a browser would be sending a few more headers , when a page is loaded in an IFrame.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 javascript 和以下代码来完成此操作:
不过,据我所知,无法在服务器端找到此信息,因为浏览器只是像往常一样发送 http 请求。您可以尝试转储所有标头,看看是否有任何明显的差异,但我真的很怀疑。
You can do this using javascript with the following code:
To the best of my knowledge, though, there is no way to find this out serverside, as the browser merely sends an http request like it always would. You can try just dumping all of the headers to see if there's any discernible difference, but I really doubt it.