iframe内部切换 返回 更新父窗口内容

//点击第一个子窗口 设置父窗口上的文字,并跳转到子另一个子窗口
function test(){
$('#contentFrame', parent.document).parent().parent().find(".centerFont").text("sdfsdf");
window.location.href = "${ctx}/product/72";
}

//当进入的这个子窗口返回的时候,设置onunload事件 更新父窗口的内容,不能使用alert 因为onunload函数是在body已经关闭后才调动的,所以如果使用alert的话(alert父窗口是body)就会报错或不显示
window.onunload=function(){

$('#contentFrame', parent.document).parent().parent().find(".centerFont").text("123");

}

怎样获取   当前iframe的  父iframe  的父iframe?
var headerContent=$($(".easyui-layout",parent.parent.document),parent.document);
 

你可能感兴趣的:(iframe内部切换 返回 更新父窗口内容)