How to dynamically change the color of the selected menu item of a web page?

后端 未结 8 1474
伪装坚强ぢ
伪装坚强ぢ 2020-12-13 14:55

I am new to developing web pages. I am looking to create menus similar to the ones in stackoverflow.com (like Questions, Tags, Users shown above). How do I change the color

8条回答
  •  -上瘾入骨i
    2020-12-13 15:15

    Set the styles for class active and hover:


    Than you need to make the li active, on the server side. So when you are drawing the menu, you should know which page is loaded and set it to:

     
  • Question
  • Tags
  • Users
  • But if you are changing the content without reloading, you cannot change set the active li element on the server, you need to use javascript:

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

提交回复
热议问题