gpt4 book ai didi

javascript - 我如何通过 jQuery 获取这个类名?

转载 作者:行者123 更新时间:2023-12-03 12:11:34 24 4
gpt4 key购买 nike

尝试创建一个 Accordion ,但我无法弄清楚检查包装器是否具有事件类。

我的 jQuery:

$('.faq_wrap span.plus').on(touchClick, function (e) {
var topEl = $(this).closest('.faq_wrap');
if (topEl.hasClass('active')) {
topEl.removeClass('active');
topEl.find('.answer').slideUp('fast');
return false;
}
topEl.each(function (index, el) {
topEl.removeClass('active');
topEl.find('.answer').slideUp('fast');
});
topEl.find('.answer').slideDown('fast');
topEl.addClass('active');
console.log(topEl);
});

这是 console.log 的输出:

enter image description here

我正在尝试检查 .faq_wrap.active 是否已存在。如果是这样,请先将 Accordion 向上滑动,然后再将新的 Accordion 向下滑动。截至目前,此检查已被忽略,我可以根据需要一次打开任意数量的 Accordion 。想法?

最佳答案

使用.get()

topEl.get(0).className

关于javascript - 我如何通过 jQuery 获取这个类名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24943316/

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