我正在使用 jQuery Accordion 进行侧边栏导航。目前我有 2 个链接,它们下面都有“孩子”。
这是我的 jsFiddle:http: //jsfiddle.net/6Eh8C/
您会注意到,当您单击“关于我们”时,图库会关闭。这不应该发生。只有当我单击“画廊”时,画廊才会关闭。
我该如何解决?
这是我的 jQuery:
jQuery(function($) {
$('#accordion > li > a').click(function (e) {
if ($(this).next('ul').length == 0) {
// link is for navigation, do not set up accordion here
return;
}
// link is for accordion pane
//remove all the "Over" class, so that the arrow reset to default
$('#accordion > li > a').not(this).each(function () {
if ($(this).attr('rel')!='') {
$(this).removeClass($(this).attr('rel') + 'Over');
}
$(this).siblings('ul').slideUp("slow");
});
//showhide the selected submenu
$(this).siblings('ul').slideToggle("slow");
//addremove Over class, so that the arrow pointing downup
$(this).toggleClass($(this).attr('rel') + 'Over');
e.preventDefault();
});
$('.slides_item').children('div').css('background','#ededed')
});
非常感谢任何指针:-)