在jquery中显示加载图像很长一段时间

时间:2011-05-24 05:47:59

标签: jquery

您好我想知道是否有任何技术可以控制使用jquery的加载图像可以长时间显示的时间。例如:

$('#ajax').html('<img src="ajax.gif"/>');
$('#iframe').load('file.php');

现在我想知道有没有办法在指定的时间内显示ajax.gif?请告诉我。

1 个答案:

答案 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');
});