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.
ページが読み込まれていないときにスピナー.gifを表示しようとしています。次に、ページが読み込まれるときに、スピナーを非表示にする必要があります。検索しましたが、何も見つかりませんでした。
この例はありますか?これどうやってするの?
スピナーを通常の img タグとして追加し、ID を指定してから、documentReady でタグを削除します
あなたのhtmlで:
<img src="your;gif" id="spinner" />
次に、jquery を使用した JavaScript コードで:
$(function(){ $('#spinner').remove(); })