Get current URL from IFRAME

前端 未结 7 1516
小鲜肉
小鲜肉 2020-11-22 08:08

Is there a simple way to get the current URL from an iframe?

The viewer would going through multiple sites. I\'m guessing I would be using something in javascript.<

7条回答
  •  眼角桃花
    2020-11-22 08:38

    If your iframe is from another domain, (cross domain), the other answers are not going to help you... you will simply need to use this:

    var currentUrl = document.referrer;
    

    and - here you've got the main url!

提交回复
热议问题