gpt4 book ai didi

javascript - JS if else if else

转载 作者:行者123 更新时间:2023-12-03 09:57:41 26 4
gpt4 key购买 nike

有没有一种方法可以从一个事件运行多个 if else 语句?例如,尝试运行此命令,但它仅对类为“two”的元素执行第一个 if else,而不是对类为“三”的第二个元素执行。

$(".hamburger-menu").click(function(){

if ($(".two").hasClass("two-rotate")){
$(".two").addClass("two-rotate-back").removeClass("two-rotate");
}
else {
$(".two").addClass("two-rotate").removeClass("two-rotate-back");
}

// This one won't execute
if ($(".three").hasClass("three-rotate")){
$(".three").addClass("three-rotate-back").removeClass("three-rotate");
}
else {
$(".three").addClass("three-rotate").removeClass("three-rotate-back");
}
});

我知道答案一定很简单,但我已经搜索了 30 分钟,但找不到答案。

最佳答案

缺少}); 位于末尾,并且点击事件可能无法正确绑定(bind)。

这是工作plunkr:“http://plnkr.co/edit/6hBXDFLXoGkHFBgvmbbx?p=preview

关于javascript - JS if else if else,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30681243/

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