提交表单时是否可以显示叠加层(不通过 Ajax)?
一些背景知识:我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将覆盖层绑定到按钮单击,因为您没有使用 AJAX,表单提交将重新加载页面。
另外,blockUI 不应该需要 AJAX。
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.
由于您使用的是 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.