在一个tab中添加或删除数据后,要改变主页(相当于链接的另一个tab)的内容:
1、在要刷新的窗口的初始化中添加 js 刷新方法,并保存到 window.top 中
window.top["Refresh_CloudHomePage_Content"] = function () {
window.location.reload();
}
2、在主页添加刷新方法
function RefreshCloudHomePageTab(title) {
if ($("#tabMenu").tabs(‘exists‘, title)) {
$(‘#tabMenu‘).tabs(‘select‘, title);
window.top.Refresh_CloudHomePage_Content.call();
}
}
3、在另一个 tab 数据处理完成之后执行主页的刷新方法
parent.RefreshCloudHomePageTab("主页");
时间: 2024-11-07 17:39:25