当用户单击页面上的链接/按钮时,我正在使用以下一段 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 版”配合得很好。该代码不再有效。
任何人都可以帮我吗?非常感谢您的所有帮助和建议。