How to communicate between iframe and the parent site?

前端 未结 6 699
北海茫月
北海茫月 2020-11-22 13:01

The website in the iframe isn\'t located in the same domain, but both are mine, and I would like to communicate between the iframe and the pare

6条回答
  •  执笔经年
    2020-11-22 13:27

    the window.top property should be able to give what you need.

    E.g.

    alert(top.location.href)
    

    See http://cross-browser.com/talk/inter-frame_comm.html

提交回复
热议问题