跨域子窗口DOM引用

时间:2012-11-29 18:22:24

标签: javascript

我在子窗口中弹出第三方网站。我能从父窗口引用其DOM对象吗?我怎么能这样做?

2 个答案:

答案 0 :(得分:0)

简单的答案:

你不能违反SOP期限。

漏洞正在使用parent.parent方案,其中至少要通过相同的来源请求属性:

Resizing an iframe based on content

答案 1 :(得分:0)

 childWindow = window.open ("http://www.yourDomain.com","mywindow");

  childWindow.onload = function () {
     childDocument = childWindow.document;
     // now you can do things like, childDocument.getElementById("someElement"); and other DOM manipulation.

    };