【发布时间】:2014-01-04 03:51:02
【问题描述】:
我想使用 JavaScript 从 iframe 中获取元素。我尝试了以下方法:
var iframe = document.getElementById("iframe id");
var iframeWindow = iframe.contentWindow || iframe.contentDocument.parentWindow;
iframe.onload = function(){
alert(iframeWindow.getElementById('notice'));
};
谁能帮我搞定这个工作?
跨域
感谢回复
【问题讨论】:
-
irfame src 在同一个域上吗?您发布的内容应该有效,会发生什么? (你也应该接受一些答案!)
-
取消删除它,我读到的原始问题是询问如何获取 iframe 参考
标签: javascript iframe