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.
重複の可能性: HTML での画像の読み込み順序の制御
Web サイトで画像の読み込み優先度または読み込み順序を設定する方法はありますか?
jQueryを使用してsthを試すことができます。そのように:
$(document).ready(function() { var preloaded_image = $('<img />').attr('src', 'img.jpg'); $('#img_div').append(preloaded_image); });
これにより、残りのコンテンツの後に画像が読み込まれるはずです。