獲取iframe的元素並進行操做

獲取iframe中的document元素有一下集中方法:數組

一、getElementById()方法和contentWindow屬性:spa

window.onload=function(){ /*必須等待頁面加載結束後*/
document.getElementById(
"iframe的ID").contentWindow.document.getElementById("元素的ID")
document.getElementById(
"iframe的ID").contentDocument.getElementById("元素的ID") }

 

注意:上面的 .contentDocument (不能用於IE,由於IE不存在這個屬性)至關於 .contentWindow.document !code

 

二、window.對象的frames屬性對象

window.onload=function(){ /*必須等待頁面加載結束後*/ window.frames["索引或者iframe的name屬性值"].document.getElementById("元素的ID") }

 

window.frames屬性引用的是類數組對象,並能夠經過數字或窗體名進行索引。blog

window.frames[0]  //窗口的第一個子窗體索引

window.frames["iframe的name屬性值"]  //window.frames["f1"]或者window.frames.f1get

注意:frames[]數組裏的元素是Window對象,而不是<iframe>元素iframe

 

三、iframe的name屬性值io

window.onload=function(){ /*必須等待頁面加載結束後*/ iframe的name屬性值".document.getElementById("元素的ID") /*窗體的名字是指窗體中的window對象*/
}

 

注意:能夠經過窗體的名字「f1」來代替frames.f1.function

 

補充:

 

獲取iframe的窗體: document.getElementById("iframe的ID").contentWindow = window.frames["索引或者iframe的name屬性值"] = iframe的name的屬性值
相關文章
相關標籤/搜索