提交表单时是否可以显示叠加层(不通过 Ajax)?

发布于 2024-11-07 04:08:56 字数 253 浏览 0 评论 0原文

一些背景知识:我正在使用 asp .net MVC,并且我不允许使用 JQuery 异步提交表单。当用户提交表单时,需要几秒钟的时间才能进行保存,然后向他们显示一条消息。此时,客户想要显示带有图像和处理标签的叠加层。我对所有覆盖层使用了 BlockUI(Jquery 插件),但它不起作用,因为我没有通过 ajax 发布表单。

任何有关如何显示叠加层的想法都非常感谢。

TIA。

问候,

拉贾

A bit of background: I am using asp .net MVC and I am not allowed to asynchrounously submit the form using JQuery. When the user submits the form it takes a few seconds for the save to happen and then a message is displayed to them. In this time the client wants to show an overlay with an image and a processing label. I was using BlockUI (Jquery plugin) for all overlays but it wont work since I am not posting the form via ajax.

Any ideas on how to show an overlay is much appreciated.

TIA.

Regards,

Raja

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

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

发布评论

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

评论(2

我们只是彼此的过ke 2024-11-14 04:08:56

您可以将覆盖层绑定到按钮单击,因为您没有使用 AJAX,表单提交将重新加载页面。

另外,blockUI 不应该需要 AJAX。

$('.button').click(function() {
    $.blockUI();
});

You can tie a overlay to the button click, because you are not using AJAX the form submission will reload the page.

Also, blockUI should not require AJAX.

$('.button').click(function() {
    $.blockUI();
});
梦行七里 2024-11-14 04:08:56

由于您使用的是 MVC,我不确定您是否使用的是 Webforms 或者控制器。

请尝试这个,

对于网络表单,您可以使用 OnClientClick 调用 javascript 来显示具有处理 gif 图像的 div。

对于控制器模式,在提交表单之前的 onclick 事件处理程序中,使用 javascript/jquery 显示具有处理 gif 图像的 div。

Since u are using MVC, am not sure if u are using webforms or controllers.

Please try this,

For webforms, u can use OnClientClick to call a javascript to show the div that has the processing gif image.

For controller pattern, in onclick event handler before the form is submitted, use javascript/jquery to show the div that has the processing gif image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文