在ajax模式之外调用函数
我在页面上使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 jqmodal 的 .onHide 处理程序。 它允许您在用户选择关闭对话框时触发操作。
try the .onHide handler of jqmodal. It allows you to trigger actions when the user chooses to close the dialog.