如何使用 Jquery 打破 iframe 并重定向页面
我如何理解我的页面是从 iframe 调用的并用 jquery 打破它?谢谢。
How can i understand that my page is being called from iframe and break it with jquery ? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这就是你如何打破框架
that's how you break out of a frame
这可以用普通的 Javascript 来完成,因为
top
和location
都是附加到所有主要浏览器中提供的全局window
对象的对象。This can be done in plain Javascript since
top
andlocation
are both objects attached to the globalwindow
object provided in all major browsers.如果你真的想要一个 JQuery 解决方案,它就是(跨浏览器,即使 $ 是独家新闻中的其他内容,也可以正常工作):
尽管它不必要且矫枉过正,因为使用普通 JavaScript 可以更轻松地完成。
if you really want a JQuery solution here it is (Crossbrowser, and works fine even if $ is something else in the scoop):
Even though its unnecessary and overkill because it can be done easier with vanilla JavaScript.