晚间!
目前我正在使用imagesLoaded()插件,而且我有一个' loading.gif'正在进行ajax调用时显示的图像,但是,当imagesLoaded()函数在图像上运行时,没有“loading.gif”#39;这显然意味着它没有使用ajax。但这看起来有点像页面,因为加载标志消失了,但页面仍然没有完全加载。
我想我问我怎么能在imagesLoaded()工作时出现loading.gif?
http://newgameplus.nikuai.net/TEST/ (第二个搜索栏,如果你想看看我的意思。)
///////This is the code I used to make a loading bar when ajax is called.
$("#spinner").bind("ajaxSend", function() {
$(this).show();
}).bind("ajaxStop", function() {
$(this).hide();
}).bind("ajaxError", function() {
$(this).hide();
});
///////Where the plugin is called:
var $items = $( items.join('') );
$items.imagesLoaded(function(){
$container
.append( $items ).masonry( 'appended', $items, true );
});
}