How to access parent Iframe from JavaScript

后端 未结 9 1529
梦毁少年i
梦毁少年i 2020-11-22 07:50

Well, I have an IFrame, which calls a same domain page. My problem is that I want to access some information from this parent Iframe from this called page (from JavaScript).

9条回答
  •  没有蜡笔的小新
    2020-11-22 08:37

    Also you can set name and ID to equal values

    
    

    so you will be able to use next code inside child page

    parent.document.getElementById(window.name);
    

提交回复
热议问题