如何在 fotorama 中获取当前的照片 ID?我想获取拇指幻灯片之前显示的照片编号并使用 php 获取,但我不知道如何获取该照片 ID。我一直在尝试使用 onClick 函数,但我不知道 jscript 中的内部 ID 的编号。非常感谢任何可以帮助我的人。
问问题
1348 次
2 回答
0
试试这个片段:
$('#your-fotorama-id')
.on('fotorama:show', function (e, fotorama) {
// show the current index
alert(fotorama.activeIndex);
// or the id
alert(fotorama.activeFrame.id);
});
于 2013-09-21T10:49:06.620 回答
0
您可以使用 fotorama.activeIndex 获取当前活动图像的基于整数的索引。尝试这个:
alert(fotorama.activeIndex);
于 2019-07-16T21:22:45.893 回答