Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在加载网站布局中的所有图像之前显示 ajax 指示器?
提前致谢。
使用 jQuery。请。
$("#loading").ajaxStart(function() { $(this).show(); }); $("#loading").ajaxStop(function() { $(this).addClass('ohmy').hide('slow'); });