1.在iframe子頁面中取得父頁的元素:
a>window.parent.document這個是取得父頁document中的物件;
b>如果要取得父親頁面js中的方法:window.parent.xxxx();xxxx()為方法;
2.在父頁中取得iframe子頁面中的元素:
a>
var child = document.getElementByIdx_x("mainFrame").contentWindow;//mainFrame這個id是父親頁面iframe的id
child.document;//取得子頁面中的document物件;