gpt4 book ai didi

javascript - jQuery 父切片

转载 作者:行者123 更新时间:2023-11-30 06:35:33 25 4
gpt4 key购买 nike

你好,我为一些 div 中的一些元素做了一个假加载。我的问题是当我点击 加载更多 jquery 切片并加载点击我的所有元素(来 self 的第一个容器和第二个容器)。

这是我的代码和here is jsFiddle :

$(".tohide").hide();
$(".tohide").slice(0, 3).show();

$(".more-comments").click(function(){
var showing = $(".tohide:visible").length;
$(".tohide").slice(showing - 1, showing + 999).show();
});

最佳答案

使用 next()children(),像这样:

$(this).next("#comments").children(".tohide").slice(showing, showing + 999).show(); 

参见 DEMO .

关于javascript - jQuery 父切片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14781392/

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