如何通过facebox将模态窗口(url)刷新到另一个模态窗口(url)

时间:2010-01-28 06:07:12

标签: jquery html modal-dialog thickbox facebox

这最终是我想要实现的目标。

用户点击Page1

模态窗口打开。

用户点击第2页

模态窗口刷新到该页面。

/////

但这就是发生的事情

用户点击Page1

模态窗口打开。

用户点击第2页

页面更改为index2.html。

1 个答案:

答案 0 :(得分:0)

用户点击“Page1”并打开第1页。 在第1页中,用户单击“刷新父级”按钮。然后该按钮激活以下javascript命令:

window.opener.location.reload(true);

window.opener引用父页面,location.reload(true)刷新页面。