作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以使用 JavaScript 测试页面是否由特定域内嵌框架?
像这样:
if (window!=window.top){
if (this page is iframed by www.foo.com){ // load foo's special navigation bar}
if (this page is iframed by www.bar.com){ // load bar's special navigation bar}
} else { //load normal navigation bar }
最佳答案
尝试
var parentLocation='';
if(window.parent && document.referrer)
parentLocation = document.referrer;
alert(parentLocation);
您应该会在警告框中看到父页面的 url。正如他们所说,剩下的就是历史......
关于javascript - 是否可以检测页面是否被特定域内嵌框架?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4841343/
我是一名优秀的程序员,十分优秀!