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.
Web サイトのレイアウト内のすべての画像が読み込まれる前に ajax インジケーターを表示するにはどうすればよいですか?
前もって感謝します。
JQuery を使用します。お願いします。
$("#loading").ajaxStart(function() { $(this).show(); }); $("#loading").ajaxStop(function() { $(this).addClass('ohmy').hide('slow'); });