我想在标签向上滑动时删除活动类并在打开的选项卡中添加活动类
$(document).ready(function(){
$("#accordian li h3").click(function(){
//slide up all the link lists
$("#accordian ul .row").slideUp();
//slide down the link list below the h3 clicked - only if its closed
if(!$(this).next().is(":visible"))
{
$(this).next().slideDown();
}
})
})