Is There Any Way We Can Get Url Of PopUp Windows In Parent Window

前端 未结 2 962
慢半拍i
慢半拍i 2021-01-25 07:33

I want to Get a url of popUp window And Show It in Parent window.



        
2条回答
  •  北荒
    北荒 (楼主)
    2021-01-25 07:58

    If the popup is from a third party domain (such as google.com), then you can't access the location.href property of the popup because of the "same origin policy".

    If it's in the same domain, then you can get the URL by doing this on the parent window:

    popUpWindow.location.href
    

提交回复
热议问题