在ajax模式之外调用函数

发布于 2024-07-22 14:11:14 字数 301 浏览 3 评论 0原文

我在页面上使用 jqModal 插件来显示模式对话框。 我遇到一种情况,其中一个模式包含一个通过 ajax 调用的表单(一个单独的 .aspx 页面,加载到模式窗口中。如下所示)

 $('#mdl_new').jqm({ ajax: 'ajax/new_modal.aspx', trigger: '#options_add a' });

当用户在 new_modal.aspx 页面中填写表单并单击提交按钮时,我运行一些服务器端代码,然后我需要更新主页上的 div,同时仍显示模式。

这可能吗?

I am using the jqModal plugin for modal dialogs on my page. I have a situation where one modal includes a form called via ajax (a seperate .aspx page that gets loaded into the modal window. as shown below)

 $('#mdl_new').jqm({ ajax: 'ajax/new_modal.aspx', trigger: '#options_add a' });

When the user fills in the form in the new_modal.aspx page and clicks on the submit button, I run some server side code then I need to update a div on the main page, while the modal is still shown.

Is this possible?

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

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

发布评论

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

评论(1

再可℃爱ぅ一点好了 2024-07-29 14:11:14

尝试 jqmodal 的 .onHide 处理程序。 它允许您在用户选择关闭对话框时触发操作。

 .onHide: function(h) { 
      t.html('Please Wait...');  // Clear Content HTML on Hide.
      //perform your div manipulation here
      h.o.remove(); // remove overlay
      h.w.fadeOut(888); // hide window
    }

try the .onHide handler of jqmodal. It allows you to trigger actions when the user chooses to close the dialog.

 .onHide: function(h) { 
      t.html('Please Wait...');  // Clear Content HTML on Hide.
      //perform your div manipulation here
      h.o.remove(); // remove overlay
      h.w.fadeOut(888); // hide window
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文