您应该尝试以下代码:
$('#reload').click(function () {
if ($(this).data('isLoading')) return;
$(this).data('isLoading', true);
var $container = $('#captcha').parent(),
$loading = $('<div id="loading"/>');
$('#captcha').hide(0, function () {
$loading.prependTo($container)
}).one('load', function () {
$('#loading').remove();
$(this).fadeIn(400, function () {
$('#reload').data('isLoading', false);
});
}).attr('src', 'captcha.php?' + $.now());
});
并使用以下CSS:
#loading {
float: left; /* <<< add this one */
background: transparent url(obrazki/reload.gif) no-repeat center center; /* use transparent color, you btw should modificate img to fit with height */
width: 80px;
height: 35px;
}