父页面:
document.getElementById("childFrame").contentWindow._alert("逆时针向");
}```
子页面:
```function prents(){
parent.chuandicanshu()
}
function _alert(text){
var _footer = document.getElementById("footer");
_footer.style.color='#333';
_footer.style.background='#0099ff';
console.log(text)
}```
父页面通过contentWindow获取子页面的Window对象以进行方法调用,
子页面通过parent调用父页面方法