我正在使用jquery顯示一個圖形,需要6到7秒才能加載,所以在那個時候我必須顯示圖像加載器。在圖形加載之前,圖像加載器必須至少顯示5秒,但其顯示僅爲1秒。ImageLoader顯示不超過1秒
JS:
$(function() {
/** image loader displaying for a sec */
$('#graph').html('<img src="images/loader.gif">');
$('#graph').load(function() {
//data of graph
});
});
HTML:
<div id="graph"></div>
Rohit Batham感謝您的回答。我不能在這裏使用setTimeout函數,因爲如果網絡很慢,圖表可能需要超過10到15秒。 – user2721624