0

我正在使用cycle.js一个小幻灯片:

var $slider = $(".trauringe");
$slider.cycle({
timeout: 6000,
next:   '#next', 
prev:   '#prev',
before: beforePic,
after: afterPic });

和 html 标记:

 <ul class="trauringe" style="width: 690px; height: 395px;">
   <img src="trauringe/1_Trauringe.jpg" style="display: none;" alt="Trauringe 1" />
   <img src="trauringe/2_Trauringe.jpg" style="display: none;" alt="Trauringe 2" />
   <img src="trauringe/3_Trauringe.jpg" style="display: none;" alt="Trauringe 3" />
   <img src="trauringe/4_Trauringe.jpg" style="display: none;" alt="Trauringe 4" />
   <img src="trauringe/5_Trauringe.jpg" style="display: none;" alt="Trauringe 5" />
 </ul>

我试图弄清楚如何读取alt当前图像的图像,如下所示:

function afterPic() { 
      console.log($('.trauringe').find('img').attr('alt'));
        });

不幸的是,这不起作用,它只显示第一个,而不是当前。

非常感谢任何帮助!谢谢

4

1 回答 1

1

你可以试试这个——

function afterPic() {  
     console.log(this.alt); 
}
于 2013-06-10T20:49:56.920 回答