Active Menu Highlight CSS

后端 未结 11 892
孤独总比滥情好
孤独总比滥情好 2020-11-29 00:54

I want to highlight the current menu you have click. I\'m using CSS, but it is now working.

here is my css code:

#sub-header ul li:hover{ background-         


        
11条回答
  •  情深已故
    2020-11-29 01:45

    Another variation with a simple 2-line listener

    $( ".menu_button" ).click(function() {
    
        $( ".menu_button" ).removeClass('menu_button_highlight');
        $(this).addClass('menu_button_highlight');
    });
    

    =====

        Admin
        
    User Manager
    Invite Codes

    ====

    .menu_button {
    
        padding: 0 5px;
    }
    
    .menu_button_highlight {
    
        background: #ffe94c;
    }
    

提交回复
热议问题