當我使用a = window.frames [「iframe」]訪問iframe時,它說a是一個DOMWindow。
但是當我嘗試訪問文檔時,它說未定義,但是當我使用top時,它指向它自己。這就像iframe只有自己作爲一個屬性。
當我通過document.getElementById(「iframe」)訪問它時,它將自己標識爲HTMLIFrame,但問題仍然存在,這真的很奇怪,我需要幫助。HTML iFrame內容
我曾嘗試:
document.getElementById("iframe").getDocument
document.getElementById("iframe").getDocument()
document.getElementById("iframe").html.body
document.getElementById("iframe").body
document.getElementById("iframe").document.getElementById("btag")
,還有更多的組合。
我真的不知道爲什麼這樣做。
謝謝。
如果使用jQuery可以簡單地訪問iframe中的內容與.contents()http://api.jquery.com/contents/ –
好了,顯然鉻用途contentWindow contentDocument的這一翻譯,但我描述的問題仍然存在。 – thabubble
更新瞭解決方案 –