-1

当用户单击页面上的链接/按钮时,我正在使用以下一段 jquery 代码来显示 loading.gif。

<div class="progress-indicator">
  <img src="/myapplication/images/loading.gif" alt=""  />
</div>


<script>
  $j(window).bind(
           $j.browser.opera ? 'unload' : 'beforeunload',
           function(){
              //display image container
              $j('.progress-indicator').css( 'display', 'block' );
              //set a little timeout and force re-displaying of the image
              //this can work around IE behavior, that 'freezes'
              //animations during a submit
              setTimeout( function() {
                  $j('.progress-indicator > img').attr( 'src',
                  $j('.progress-indicator > img').attr('src')+'?reload' );
              }, 50 );
            } );
</script>

在我将 jquery 升级到 1.10.0 版之前,它与“jquery 1.5.1 版”配合得很好。该代码不再有效。

任何人都可以帮我吗?非常感谢您的所有帮助和建议。

4

2 回答 2

6

.browser()在 jQuery 1.9 中被移除

http://api.jquery.com/jQuery.browser/

您应该在升级时使用 jQuery Migrate 插件来检查您的脚本。

http://jquery.com/upgrade-guide/1.9/#jquery-migrate-plugin

于 2013-09-12T13:41:43.593 回答
1

这是升级指南

1: http: //jquery.com/upgrade-guide/1.9/迁移插件

尝试寻找问题

于 2013-09-12T13:44:41.770 回答