这怎么可能?以下构造不起作用:
$('.multibutton').click(function(event) {
    //.. some stuff before
    $(this).next('.menu').slideDown( "slow");
    // hide all other menus except this.next.menu
    $('.menu :not(this.next)').hide();
    //.. some stuff after
});
谢谢你