admin管理员组文章数量:1342913
When I try to get the contentwindow out of an iframe, using
var contentWindow = document.getElementbyId('iframe').contentWindow
sometimes it returns "Window undefined" because the contentWindow doesn't exist. I can't seem to run a check for it using
if (contentWindow === unidentified) or if (contentWindow === null)
as it just errors out of the code if I try to grab values out of it. Has anyone else run into this problem and figured out a solution?
When I try to get the contentwindow out of an iframe, using
var contentWindow = document.getElementbyId('iframe').contentWindow
sometimes it returns "Window undefined" because the contentWindow doesn't exist. I can't seem to run a check for it using
if (contentWindow === unidentified) or if (contentWindow === null)
as it just errors out of the code if I try to grab values out of it. Has anyone else run into this problem and figured out a solution?
Share Improve this question edited Jan 22, 2011 at 15:16 Tim Down 325k76 gold badges460 silver badges542 bronze badges asked Jan 22, 2011 at 2:36 TimelierSwordTimelierSword 611 gold badge1 silver badge2 bronze badges 1-
4
unidentified
made me smile :) We were all beginners once. – Matt Montag Commented Apr 8, 2013 at 8:04
3 Answers
Reset to default 6Are you typing it properly? getElementByID
not getElementbyId
. Did you confirm that that returns an element before querying contentWindow
? Are you querying it after it loads?
Are you doing gEBI
after DOM ready or page load? Did you throw in alerts on the element? Is the domain in the iframe the same as the origin domain? What browser are you using?
if (contentWindow === unidentified) or if (contentWindow === null)
There is no such thing as unidentified
it's undefined
. Slow down and be accurate.
Try this
var iframeElem = parent.document.getElementById("iframe");
var win = iframeElem.contentWindow;
Try specifying what data you want from the object you call here
var contentWindow = document.getElementById('iframe')
by doing this
var contentWindow = document.getElementById('iframe').contentWindow
This worked for me
本文标签: javascriptIframe ContentWindowStack Overflow
版权声明:本文标题:javascript - Iframe ContentWindow - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743712702a2526210.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论