你可以得到的节点document
的对象<iframe>
与contentDocument
的财产HTMLIFrameElement
但我不能找到一种方法,获得<iframe>
背出节点。
是关系<iframe>
和它的文档只有一个办法?
如果是这样, 为什么?
非工作演示:
var iframe = document.getElementById('iframe');
var doc = iframe.contentDocument || iframe.contentWindow.document;
var div = doc.getElementsByTagName('div')[0];
console.log('Did we find the iframe? ' + ($(div).closest('iframe').length > 0));
// Output: "Did we find the iframe? false"