最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Check if page is in Iframe for Google Chrome - Stack Overflow

programmeradmin4浏览0评论

I have tried many properties of window to see if a page in an iframe can tell if it is in an iframe. I have tried:

if(top.location!= self.location) //doesn't work in Google Chrome
   alert("I am in an iframe!")

And this doesn't work (works on all browsers but Chrome). I am writing a userscript for Firefox and Chrome but Chrome really doesn't behave. Is there a way to tell if Chrome can detect if its page is in an iframe?

I have tried many properties of window to see if a page in an iframe can tell if it is in an iframe. I have tried:

if(top.location!= self.location) //doesn't work in Google Chrome
   alert("I am in an iframe!")

And this doesn't work (works on all browsers but Chrome). I am writing a userscript for Firefox and Chrome but Chrome really doesn't behave. Is there a way to tell if Chrome can detect if its page is in an iframe?

Share Improve this question asked Mar 11, 2011 at 21:39 user654628user654628 1,4592 gold badges18 silver badges37 bronze badges 2
  • jsfiddle/hpVec It seems to be working fine in Chrome. – Peter Olson Commented Mar 11, 2011 at 21:45
  • 1 var in_iframe = (window.location != window.parent.location); – Prashant Pugalia Commented Jul 12, 2012 at 8:59
Add a ment  | 

2 Answers 2

Reset to default 15

This works for frames I would assume it also works with iFrames

if (top === self) { 
  // no frame
} else { 
  //frame 
}

window.frameElement is supported in even the most ancient browsers. It identifies an iframe, embed, or object in which the current window is embedded.

if(!!window.frameElement){
  //code to be executed if we are in an iframe
} 

More here.

发布评论

评论列表(0)

  1. 暂无评论