古老的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. 最后一点:须要在服务器中运行才能获取,直接用浏览器打开文件没有效果。
相关文章
相关标签/搜索