How can I set class=“active” to navigation menu in codeigniter?

后端 未结 4 1417
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-09 18:23

I just start up to be a web developer. Now I create a dynamic website for the first time. I don\'t know how to set class=\"active\" to the navigation menu. Here is

4条回答
  •  迷失自我
    2021-02-09 18:45

    I have used Codeigniter URI Class $this->uri->segment();

    Please look at my code:

  • Tech
  • Please note....

    class="uri->segment(1)==='technology')?'active':''?>"
    

    Also you can use URI Class $this->uri->uri_string()

    Here is my active class for home page(index)

  • Home
提交回复
热议问题