如何通过 Facebox 将模态窗口(url)刷新到另一个模态窗口(url)
这就是我最终想要达到的目标。
用户单击 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用户单击“Page1”,然后 page1 打开。
在第 1 页中,用户单击“刷新父级”按钮。然后该按钮激活以下 JavaScript 命令:
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 referes to the parent page and location.reload(true) refreshes the page.