Codeigniter--add “active” css class to link, how to?

后端 未结 5 2207
走了就别回头了
走了就别回头了 2021-02-09 15:02

What\'s the quickest and easiest way to add the \"active\" class to a link, so it can be styled? I\'m developing an app in CI, and I\'d like a quick easy way to do this automat

5条回答
  •  温柔的废话
    2021-02-09 15:51

    You can do this way by creating helper with following

    router->fetch_class();
            return ($class == $controller) ? 'active' : '';
        }
    }
    

    then apply it in menu view

  • Services
提交回复
热议问题