本文介绍了我如何设置class =“ active”?到codeigniter中的导航菜单?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚开始是一名Web开发人员。现在,我第一次创建一个动态网站。我不知道如何在导航菜单中设置 class = active
。
这是我的菜单代码:
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 my menu code:
<li>
<a href="<?php echo base_url(); ?>patient/createpatient"><i class="fa fa-users fa-lg"></i> Create Patient </a>
</li>
<?php } ?>
<li>
<a href="<?php echo base_url(); ?>patient/listpatient"><i class="glyphicon glyphicon-list-alt fa-lg"> </i> List Patients </a>
</li>
<?php if( $usertype == "Admin"){?>
<li>
<a href="<?php echo base_url(); ?>user/"><i class="fa fa-list fa-lg"> </i> List Users </a>
</li>`
推荐答案
您可以使用 $ this-> uri-&segment();
<li>
<a href="<?php echo base_url(); ?>patient/createpatient" <?php if($this->uri->segment(1)=="menu_name"){echo 'class="active"';}?> ><i class="fa fa-users fa-lg"></i> Create Patient </a>
</li>
<?php } ?>
<li>
<a href="<?php echo base_url(); ?>patient/listpatient" <?php if($this->uri->segment(1)=="menu_name"){echo 'class="active"';}?> ><i class="glyphicon glyphicon-list-alt fa-lg"> </i> List Patients </a>
</li>
<?php if( $usertype == "Admin"){?>
<li>
<a href="<?php echo base_url(); ?>user/" <?php if($this->uri->segment(1)=="menu_name"){echo 'class="active"';}?> ><i class="fa fa-list fa-lg"> </i> List Users </a>
</li>
这篇关于我如何设置class =“ active”?到codeigniter中的导航菜单?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!