在頁面中巢狀了iframe
獲取iframe中的window物件:iframe.contentwindow
獲取iframe中的document:iframe.contentdocument
ie6,7不支援contentdocument,改用以下方式
iframe.contentwindow.document
剩下的操作dom就和平常一樣了
在ie,firefox,chrome中都可以相容,不過在chrome中需要在web服務中才可以的,本地檔案不行
iframe子頁面操作父頁面
最近經常用到iframe,用的最多的就是在子頁面中操作父頁面的方法或變數等,總結了用到的幾種方法,如下 var htmlurl window.parent.main frame attr src jquery 獲取父頁面的iframe的src屬性值 其實獲取父頁面的乙個引數或方法有很多種的寫法,現在...
iframe 操作父元素或者操作子元素
文章出處 在web開發中,經常會用到iframe,難免會碰到需要在父視窗中使用iframe中的元素 或者在iframe框架中使用父視窗的元素 在父視窗中獲取iframe中的元素 格式 iframe的id contents find iframe中的控制項id click 例項 ifm content...
轉 iframe 子 父類視窗操作
一 iframe 篇原部落格 公共方法開始 父物件得到子視窗的值 objectid是視窗標識,contentid是元素id function getvalue objectid,contentid else else 父物件向子視窗賦值 objectid是視窗標識,contentid是元素id fu...