我在移动到下一个图像时遇到问题。就像我们在 FB 中移动到下一个图像一样。我尝试过但无法实现。rightimage 是右箭头的类
$('.rightimage').on("click", function (event) {
var sectionId = $(this).parents('ul').attr('id'); // i get the current image
var outputId = sectionId.replace('ul', 'img'); // i get the current image id
var NextId = outputId + 2; //increment and assign it to another var
if ($('NextId').length) { // see if the image with id exists
// here i have to put the image if it exists else i have to check or the next image
}
if ($('NextId+1' > rightImgcounter)) {
// disable the button
}
});
'rightImgcounter' 是全局 javascript 变量,它为我们的右图像提供序列号。图像是动态生成的。不知道如何在屏幕上向右移动下一个图像。如果右边没有图像,则禁用该按钮。