如何使用 ajax 装载器是我的问题 I 是一个新到 ajax 的新问题。 我有一个函数, 当用户点击缩略图图像时, 可以改变图像, 但是图像很重, 所以我想要 ajax, 直到第二个图像装入本身。 我创建了ajax 。 gif now I just want to know how to use this image as a tracker.
<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 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>