gpt4 book ai didi

jQueryeach 和索引元素

转载 作者:行者123 更新时间:2023-12-01 06:49:25 26 4
gpt4 key购买 nike

所以我试图获取我单击的 li 的编号并显示相应的页面文本,同时隐藏其他页面文本。 (标记为#text1、#text2、#text3 等...),但下面的代码对我没有任何作用。

非常感谢您的帮助!

var j = 0;
$(".gallery li").each(function () {
j++;

$(".gallery li").click(function () {
var num = $(this).index() + 1;
$('#text' + num).addClass('currentpage');
$('#text' + num).siblings().removeClass('currentpage');
});
});

最佳答案

参见this working fiddle 。你只需要取出.each

$(".gallery li").click(function () {
var num = $(this).index() + 1;
$('#text' + num).addClass('currentpage');
$('#text' + num).siblings().removeClass('currentpage');
});

关于jQueryeach 和索引元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17351792/

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