如何在fotorama中获取当前的照片ID?我想在拇指幻灯片放映之前显示照片的数量,并使用php获取它,但我不知道如何获得该照片ID。我一直在尝试使用onClick函数,但我不知道jscript中内部ID的编号。 非常感谢能帮助我的人。
答案 0 :(得分:0)
试试这个代码段:
$('#your-fotorama-id')
.on('fotorama:show', function (e, fotorama) {
// show the current index
alert(fotorama.activeIndex);
// or the id
alert(fotorama.activeFrame.id);
});
答案 1 :(得分:0)
您可以使用fotorama.activeIndex获取当前活动图像的基于整数的索引。试试这个:
alert(fotorama.activeIndex);