首页  >  新闻资讯 > js获取父框架的内容: 获取子框架的内容

js获取父框架的内容: 获取子框架的内容

获取父框架的内容:
window.parent.id;  ("id"为你要获取该值的名称);

parent.document.getElementById("xxx");

parent.document.getElementsByTagName("body")[0];


获取子框架的内容:
(第一个getElementById对象是子框架ID)

document.getElementById("xxx").contentWindow.document.getElementById("xxxx");

document.getElementById("xxx").contentWindow.document.getElementsByTagName("body")[0];

最新评论

0条评论

    暂无评论,欢迎您评论。

热门阅读