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

发布于 2024-08-19 03:02:01 字数 206 浏览 10 评论 0原文

这就是我最终想要达到的目标。

用户单击 Page1

模态窗口打开。

用户单击 Page2

模态窗口刷新到该页面。

/////

但这就是

用户单击 Page1 时

会打开的模态窗口。

用户点击Page2

页面更改为index2.html。

This is ultimately what I want to achieve.

User clicks on Page1

Modal window opens.

User clicks on Page2

Modal window refreshes to that page.

/////

But this is what happens

User clicks on Page1

Modal window opens.

User clicks on Page2

Page changes to index2.html.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枫以 2024-08-26 03:02:01

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

window.opener.location.reload(true);

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

User clicks on "Page1" and page1 opens.
In page1 the user clicks on "refresh parent" button. The button then activates the following javascript command:

window.opener.location.reload(true);

window.opener referes to the parent page and location.reload(true) refreshes the page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文