我有这行代码:
$('#sitesAccordion .groupOfSites').click(function() {
var lastOpenSite = $(this).siblings().hasClass(':not(.closedTab)');
console.log(lastOpenSite);
});
我得到“假”而不是得到其他元素之一(假设有一个-必须存在)。我猜问题出在:
.hasClass(':not(.closedTab)');
问题是什么?
我的目的是创建自己的手风琴(不使用jQuery UI)
我正在尝试这样写:
$('#sitesAccordion .groupOfSites').click(function() {
//Get the last opened tab
var lastOpenSite = $(this).siblings().hasClass(':not(.closedTab)');
//Close last opened tab and add class
lastOpenSite.hide().toggleClass('closedTab');
//Open the current Tab
$(this).children('.accordionContent').toggle('fast');
// remove class from open tab
$(this).toggleClass('closedTab');
});
这是最好的方法吗?谢谢,阿隆