古老的iframe

  1. iframe標籤用來嵌套子頁面。css

  2. 一個iframe就至關於一個新的窗口。瀏覽器

  3. 在父頁面中不能給iframe頁面中的DOM對象添加事件,反之亦然。服務器

  4. 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");
  1. 最後一點:須要在服務器中運行才能獲取,直接用瀏覽器打開文件沒有效果。
相關文章
相關標籤/搜索