页面卸载时显示预加载程序消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了页面卸载时显示预加载程序消息相关的知识,希望对你有一定的参考价值。

This works cross browser. Merely using onclick on a submit button to show a preloader/ please wait dialog doesn't work in IE since it doesn't show images once the page is being unloaded.
  1. <script type="text/javascript" src="https://github.com/malsup/blockui/raw/master/jquery.blockUI.js"></script>
  2. <script type="text/javascript">
  3. $(document).ajaxStop($.unblockUI);
  4. $(document).ready(function () {
  5. $('#lnkBtnPrevious').click(function () {
  6. $.blockUI();
  7. });
  8.  
  9. $('#lnkBtnContinue').click(function () {
  10. if (typeof (Page_ClientValidate) == 'function') {
  11. Page_ClientValidate();
  12. }
  13. if (Page_IsValid) {
  14. $.blockUI();
  15. }
  16.  
  17. });
  18. });
  19. </script>

以上是关于页面卸载时显示预加载程序消息的主要内容,如果未能解决你的问题,请参考以下文章

使用JQuery加载图像时显示预加载程序

在页面卸载之前显示加载 GIF

更改片段时显示 ProgressBar - Android

ASP.NET,在回发时显示加载消息

反应,流星,webpack,es6。如何创建加载/启动屏幕

如何使用内部 html 和引导程序使这个简单的 jQuery 弹出模式在页面加载时显示