当对话框模态关闭时,如何刷新 Jquery 中的页面
我在模式中更新了一些值,并且模式在同一页面上打开。 关闭模态时如何刷新 jquery 中的页面
$("#dialog-modal").bind('dialogclose',function() {
//How Do i refresh the current Page.
)};
I have some set of values updated in the modal and the modal is opened on the same page .
on closing the Modal How can i refresh the Page in jquery
$("#dialog-modal").bind('dialogclose',function() {
//How Do i refresh the current Page.
)};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
window.location.reload()
:编辑:
OP似乎正在寻找这个答案(来自下面的评论):
Use
window.location.reload()
:Edit:
It would appear the OP was looking for this as the answer (from comments, below):