我想在动画中找到一张图片<div class="text_slider">
并阅读alt=""
它。
<div id="slider">
<img src="1.png" alt="this is the first image" />
<img src="2.png" alt="this is the second image" />
</div>
我的尝试是:
function afterPic() {
$('.text_slider').animate({
opacity: 0.25,
height: 'toggle'
}, 1000,
function() {
$('.text_slider').html("<p style='z-index: 9998;'>"
+ $('#slider').find('img').this.alt +"</p>");
}
);
但不幸的是它不起作用。