1、HTML父窗口访问IFRAME中变量或函数
在父窗口脚本中写:
//调用变量赋值
IframeObj.contentWindow.someVar = "test is ok";
//调用函数
IframeObj.contentWindow.someFunction();
2、HTML中IFRAME访问父窗口中变量或函数
假设在父窗口脚本中具有方法:
function showMsg(str){
alert('Read from iframe:'+ str);
}
则在IFRAME可以这样调用父窗口的showMsg()函数:
var str = 'Wahaha!';
window.parent.showMsg(str);