标签: javascript redirect iframe
有没有办法确定iframe中的页面是否可以与直接从浏览器访问的同一子页面区分开来?如果该页面不在iframe中,我需要重定向到页面。这个iframe不是跨域的,所以我可以访问它。我想在服务器端专门做这个,但如果我不能做客户端。
答案 0 :(得分:0)
使用iframe的contentWindow属性获取其location对象。然后检查location.href属性:
contentWindow
location
location.href
var iframeUrl = iframe.contentWindow.location.href;