jquery滑动切换问题

发布于 2024-10-19 06:41:56 字数 192 浏览 6 评论 0原文

我在切换下一个 div 时遇到问题。这是代码:

jsfiddle 我的代码

我需要做的是:单击下一步按钮后,它将关闭当前的 box_content 并打开顺序中的下一个。很简单,但我做不到......请帮忙。

i'm having problems with toggling the next div. heres the code:

jsfiddle of my code

what i need to do is: after clicking the next button, it will close the current box_content and open the next one in the order. simple but i can't do it... please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

垂暮老矣 2024-10-26 06:41:56
    $(".box_next").click(function() {
        $(".box_content").slideUp();
        $(this).parents(".box").next().find(".box_content").slideDown("fast");
    });
    $(".box_next").click(function() {
        $(".box_content").slideUp();
        $(this).parents(".box").next().find(".box_content").slideDown("fast");
    });
酒中人 2024-10-26 06:41:56

将 $('.box_next').click() 函数更改为:

$(".box_next").click(function() {
    $('.box_content').slideUp();
    $(this).parent().parent().next().children(".box_content").slideDown("fast");
});

Change your $('.box_next').click() function to this:

$(".box_next").click(function() {
    $('.box_content').slideUp();
    $(this).parent().parent().next().children(".box_content").slideDown("fast");
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文