iframe標籤用來嵌套子頁面。css
一個iframe就至關於一個新的窗口。瀏覽器
在父頁面中不能給iframe頁面中的DOM對象添加事件,反之亦然。服務器
iframe中的DOM沒法正常獲取,需以下寫:code
父頁面中獲取iframe子頁面中的元素:對象
window.frames["iframe的name值"].document.querySelector("css選擇器");事件
iframe子頁面獲取父頁面中的元素 :iframe
window.parent.document.document.querySelector("css選擇器");css選擇器
例如di
window.frames["iframeName"].document.querySelector(".div"); window.parent.document.document.querySelector("#div");