您好我想知道是否有任何技术可以控制使用jquery的加载图像可以长时间显示的时间。例如:
$('#ajax').html('<img src="ajax.gif"/>');
$('#iframe').load('file.php');
现在我想知道有没有办法在指定的时间内显示ajax.gif?请告诉我。
答案 0 :(得分:1)
试
var loader = '<img id="loader" src="http://tools.patentcalls.com/images/spinner.gif"/>';
jQuery(document).ready(function () {
setTimeout( function() {
jQuery('#ajax').html(loader);
}, 1000 );
jQuery('#iframe').load('file.php');
});