jQuery 切换如果不是这个

发布于 2024-11-13 01:52:37 字数 521 浏览 4 评论 0原文

如果这是一个新手问题,请原谅我:

我设置了一个菜单来打开下一个 div 以查看更多详细信息,如果已经打开另一个 div,它将在打开新 div 时将其关闭。如果您单击与该 div 关联的标题,我无法弄清楚如何关闭已打开的 div。它只是关闭&重新开放。

代码:

$(document).ready(function() {

    $(".heading").click(function(){
        if($(".content").is(":visible")){
            $(".less").removeClass("less");
            $(".content").slideUp(500);
        }
        $(this).next(".content").slideToggle(500);
        $(this).children(".more").toggleClass("less");
    });

});

感谢任何帮助。

Forgive me if this is a newbie question:

I've got a menu set to open the next div to see more details, and if there is another div open already it will close it while it opens the new one. I cannot figure out how to close the div already open if you click on the header associated with that div. It just closes & reopens.

Code:

$(document).ready(function() {

    $(".heading").click(function(){
        if($(".content").is(":visible")){
            $(".less").removeClass("less");
            $(".content").slideUp(500);
        }
        $(this).next(".content").slideToggle(500);
        $(this).children(".more").toggleClass("less");
    });

});

Any help is appreciated.

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

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

发布评论

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

评论(2

哭泣的笑容 2024-11-20 01:52:37

试试这个:

$(".heading").click(function(){
    // Cache stuff, so we don't have to keep generating jQuery objects
    var $this = $(this);
    var $thisContent = $this.next(".content");

    // Saves a boolean value to see if the clicked element's content is
    // currently visible
    var thisWasVisible = $thisContent.is(":visible");

    // Removes less class and slides up ALL visible content divs
    $(".less").removeClass("less");
    $(".content").slideUp(500);

    // Slide the clicked element's content div down and add less class,
    // but only if it's content was not originally visible. We don't want
    // to show it again if it was just hidden.
    if(!thisWasVisible){
        $thisContent.slideDown(500);
        $this.children(".more").addClass("less");
    }
});

Try this:

$(".heading").click(function(){
    // Cache stuff, so we don't have to keep generating jQuery objects
    var $this = $(this);
    var $thisContent = $this.next(".content");

    // Saves a boolean value to see if the clicked element's content is
    // currently visible
    var thisWasVisible = $thisContent.is(":visible");

    // Removes less class and slides up ALL visible content divs
    $(".less").removeClass("less");
    $(".content").slideUp(500);

    // Slide the clicked element's content div down and add less class,
    // but only if it's content was not originally visible. We don't want
    // to show it again if it was just hidden.
    if(!thisWasVisible){
        $thisContent.slideDown(500);
        $this.children(".more").addClass("less");
    }
});
晨曦慕雪 2024-11-20 01:52:37

试试这个

$(document).ready(function() {

$(".heading").click(function(){
    if($(".content").is(":visible")){
        $(".less").removeClass("less");
        $(".content").slideUp(500);
    } else {
        $(this).next(".content").slideDown(500);
        $(this).children(".more").toggleClass("less");
    }
});

});

可能是对你所拥有的侵入性最小的改变,应该有效。

Try this

$(document).ready(function() {

$(".heading").click(function(){
    if($(".content").is(":visible")){
        $(".less").removeClass("less");
        $(".content").slideUp(500);
    } else {
        $(this).next(".content").slideDown(500);
        $(this).children(".more").toggleClass("less");
    }
});

});

Probably the least invasive change to what you have, that should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文