父页面js;tableListIframe iframe属性name的值;testFun() iframe子页面的函数:
var tableListIframe = document.getElementById("tableListIframe");
var tableRow = tableListIframe.contentWindow.testFun();
子页面:
function testFun(){
return "value";
}