jquery 获取当前索引
嗨,我正在使用由 http://snook.ca/archives/javascript/simplest-jquery-slideshow 所以基本上我现在拥有的代码是
$(function(){
$('.fadein img:gt(0)').hide();
setInterval(function(){
$('.fadein :first-child').fadeOut()
.next('img').fadeIn()
.end().appendTo('.fadein');
},
6000);
});
我想知道是否有可能获得当前显示的图像的索引?
hi i'm using a script made by
http://snook.ca/archives/javascript/simplest-jquery-slideshow
so basically the code i have now is
$(function(){
$('.fadein img:gt(0)').hide();
setInterval(function(){
$('.fadein :first-child').fadeOut()
.next('img').fadeIn()
.end().appendTo('.fadein');
},
6000);
});
I wonder if it's possible to get the index of the current image that shows in anyway?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该脚本的工作方式是,它不断移动 DOM 元素的位置,以便当前的
img
始终为索引 0,下一个img
始终为索引 1。如果您想要要了解原始顺序的索引,您需要在幻灯片脚本运行之前存储该数据:The way this script works, it keeps moving the position of the DOM elements so that your current
img
is always index 0 and the nextimg
is always index 1. If you want to know the index out of your original order, you will need to store that data before the slideshow script runs:您可以使用
.index()
来达到此目的。You can use
.index()
for exactly that purpose.