当对话框模态关闭时,如何刷新 Jquery 中的页面

发布于 2024-09-18 13:45:13 字数 174 浏览 5 评论 0原文

我在模式中更新了一些值,并且模式在同一页面上打开。 关闭模态时如何刷新 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 技术交流群。

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

发布评论

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

评论(2

恰似旧人归 2024-09-25 13:45:13
window.location.reload(true);
window.location.reload(true);
苍白女子 2024-09-25 13:45:13

使用 window.location.reload()

$("#dialog-modal").bind('dialogclose',function(){
    // force the browser to get the page from the server
    window.location.reload(true);
)}

编辑:

OP似乎正在寻找这个答案(来自下面的评论):

$("#dialog-modal").bind('dialogclose',function(){
    $('#someForm').submit();
)}

Use window.location.reload():

$("#dialog-modal").bind('dialogclose',function(){
    // force the browser to get the page from the server
    window.location.reload(true);
)}

Edit:

It would appear the OP was looking for this as the answer (from comments, below):

$("#dialog-modal").bind('dialogclose',function(){
    $('#someForm').submit();
)}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文