是否可以直接从Javascript中的文档对象访问窗口对象?
例如:
// window.frames[0] returns the document object of the first frame or iframe found on the page
myFunc(window.frames[0]);
function myFunc(doc) {
// I want to do something along these lines:
var wnd = doc.getWindow();
alert("Found frame: " + wnd.name);
for (var i=0; i<wnd.frames.length; i++) {
myFunc(wnd.frames[i]);
}
}
我不能使用jQuery,抱歉。
答案 0 :(得分:0)
根据MDN documentation,您应该已经使用window.frames[0]
获取窗口。如果您需要实际文档,则需要获取实际的框架元素并深入了解文档。
var firstFrame = document.getElementsByTagName( "iframe" )[ 0 ];
firstFrame.contentWindow; // The window
firstFrame.contentWindow.document; // The document
注意:我认为Safari的早期版本(3.0之前版本的IIRC)不支持contentWindow