如何访问Iframe的父页面元素。 例如如果我有一个页面index.htm和index.htm中IFrame中的另一个页面,并且想从该IFrame访问index.htm的元素。
答案 0 :(得分:2)
的javascript:
parent.document.getElementById('myElement');
jquery的:
$('#myElement', window.parent.document);
答案 1 :(得分:0)
请在此处查看我对类似问题的回复:
move input text from iframe to main window
基本上,parent为您提供父窗口的“窗口”对象。然后,您可以访问window.document以获取文档...因此,您可以使用parent.document.getElementById(id);
获取window.document.getElementById()