view plaincopy to clipboardprint?
获取父框架的内容:
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];