我构建了一个小功能,其工作是在用户单击“a”标签时更改横幅图像路径。它工作正常,但是当我点击“a”标签时,它会改变图像。但这需要一些时间,因为图像的大小很重。所以我想把 ajax 加载器放到图像加载本身的时间。
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){
$('.control').find('a').click(function(){
var path= $(this).text();
$('#banner').find('img').attr('src','images/' + path +'.jpg' )
})
})
</script>
</head>
<body>
<div id="banner">
<img width="500" height="300" src="images/first.jpg" />
</div>
<div class="control">
<a href="#" id="first">first</a>
<a href="#" id="second">second</a>
<a href="#" id="third">third</a>
<a href="#" id="forrth" >fourth</a>
</div>
</body>