如何使用ajax加载器是我的问题我是ajax的新手。我有一个功能,当用户点击缩略图图像,但图像很重,所以我需要ajax直到第二个图像加载自己。我已创建loader.gif现在我只想知道如何将此图像用作装载程序。
<script type="text/javascript">
jQuery(function (){
jQuery('#data').find('img').each(function(){
jQuery(this).click(function (){
var crd = jQuery(this).attr('title');
jQuery('#bigimg').fadeOut('slow', function (){
jQuery(this).find('#imnew').attr('src', 'images/' + crd +".jpg")
}).fadeIn()
})
})
})
</script>
HTML
<div id="bigimg">
<img src="images/bigImage1.jpg" id="imnew" alt="" />
</div>
<div id="data">
<div class="sub">
<div class="1">
<img src="images/thumb1.png" width="117" height="74" title="bigImage1" alt="" />
</div>
<div class="2">
<img src="images/thumb2.png" width="117" height="74" title="bigImage2" alt=""/>
</div>
<div class="3">
<img src="images/thumb3.png" width="117" height="74" title="bigImage3" alt=""/>
</div>
<div class="4">
<img src="images/thumb4.png" width="117" height="74" title="bigImage4" alt=""/>
</div>
<div class="5">
<img src="images/thumb1.png" width="117" height="74" title="bigImage1" alt=""/>
</div>
<div class="6">
<img src="images/thumb2.png" width="117" height="74" title="bigImage2" alt=""/>
</div>
<div class="7">
<img src="images/thumb3.png" width="117" height="74" title="bigImage3" alt=""/>
</div>
<div class="8">
<img src="images/thumb4.png" width="117" height="74" title="bigImage4" alt=""/>
</div>
</div>
</div>
答案 0 :(得分:2)
您需要使用jQuery.load告诉您图像何时完成加载。
当load元素和所有子元素都有时,load事件被发送到元素 已完全装满。此事件可以发送到任何元素 与URL相关联:图像,脚本,框架,iframe和 窗口对象。 http://api.jquery.com/load/
<script type="text/javascript">
jQuery(function (){
jQuery('#data').find('img').each(function(){
jQuery(this).click(function (){
var crd = jQuery(this).attr('title');
// $('#loader').show();
jQuery('#bigimg').fadeOut('slow', function (){
jQuery(this).find('#imnew').attr('src', 'images/' + crd +".jpg")
.load(function() {
$('#loader').hide();
$('#bigimg').fadeIn()
});
})
})
})
})
</script>
答案 1 :(得分:0)
试试这个:
为所有缩略图指定相同的类名,然后:
$('.thumbnail').click(function (){
var thumbNail = $(this);
var thumbPath = $(this).attr('src');
var crd = $(this).attr('title');
$(this).attr('src', 'images/loader.gif');
$('#bigimg').fadeOut('slow', function (){
$(this).load(function() {
$(this).fadeIn();
$(thumbNail).attr('src', thumbPath);
});
$(this).attr('src', crd);
})
})