javascript - Get top window url from frameiframe in different domain - Stack Overflow

I have a web page with some javascript inside that will be embedded as iframe in different websites. I

I have a web page with some javascript inside that will be embedded as iframe in different websites. I need to adjust the behaviour of my page according to the website in which it's being run. For this purpose, I tried to read top.location.href from my page, but that raised an error:

Unsafe JavaScript attempt to access frame with URL from frame with URL . Domains, protocols and ports must match.

Is there some way to go around this?

I have a web page with some javascript inside that will be embedded as iframe in different websites. I need to adjust the behaviour of my page according to the website in which it's being run. For this purpose, I tried to read top.location.href from my page, but that raised an error:

Unsafe JavaScript attempt to access frame with URL http://website.url from frame with URL http://mypage.url. Domains, protocols and ports must match.

Is there some way to go around this?

Share Improve this question asked Dec 23, 2011 at 17:32 etuarduetuardu 5,5763 gold badges52 silver badges63 bronze badges 2
  • No, that's not possible for arbitrary websites. – Rob W Commented Dec 23, 2011 at 17:34
  • I've provided an answer below and in the duplicate question stackoverflow./questions/4903351/… – mcanfield Commented Oct 17, 2013 at 22:34
Add a ment  | 

2 Answers 2

Reset to default 12

In the most mon case you can indeed retrieve the parent url of the iframe. If the iframe is just one level deep this method will work:

var parentURL = document.referrer

https://developer.mozilla/en-US/docs/Web/API/document.referrer

I've used this method when creating iframe widgets. Just remember that if you want the top level window location, but it is not the parent window of your iframe...you won't be able to get it. Also, if your widget navigates within the iframe the referrer will then change.

Yet another excellent write-up by Nicholas Zakas can be found on his blog here: http://www.nczonline/blog/2013/04/16/getting-the-url-of-an-iframes-parent/

This is as you stated the same origin policy and it is in place for security reasons. Without changing the users browser there is no way around it.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743628220a4480905.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信