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];

你可能感兴趣的:(JavaScript)