代码示例:
Title
function bindclick1() { $('.menu').click(function () { if($(this).next().hasClass('hide')){ $(this).next().removeClass('hide').parent().siblings().children('.left-item1').addClass('hide') }else{ $(this).next().addClass('hide').parent().siblings().children('.left-item1').addClass('hide') } }) }