gpt4 book ai didi

jQuery 测试 div 是否是第一个子元素?

转载 作者:行者123 更新时间:2023-12-01 00:50:03 26 4
gpt4 key购买 nike

如何测试一个图像是一组图像中的第一个还是最后一个?

我正在尝试使用以下代码根据我是否位于一系列图像的末尾来使上一个和下一个按钮动画进入或退出:

var $current = jQuery("img .active");
var $next = $current.next();

if ($next != jQuery("img:first-child")
{
// show next item and the previous button
// seems to work?

} else if ($next == jQuery("img:last-child")
{
// hide the next button since we're at the end
// doesn't seem to work??
}

最佳答案

您想要检查img的索引:

var $current = jQuery("#img .active"),
index = $current.index();

if (index === 0) {
// This is the first
} else if (index === jQuery("#img").children().length - 1) {
// This is the last
}

关于jQuery 测试 div 是否是第一个子元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4457603/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com