父页面:parent.html
代码如下:
function parentFunction() {
alert('function in parent');
}
function callChild() {
child.window.childFunction();
/*
child 为iframe的name属性值,
不能为id,因为在FireFox下id不能获取iframe对象
*/
}
子页面:child.html
代码如下:
function childFunction() {
alert('function in child');
}
function callParent() {
parent.parentFunction();
}
更多信息请查看IT技术专栏