这是我尝试过的链接
<a href="<?php echo $this->config->item('base_url') . 'index.php/back-office-panel/User_master#tab4' ?>">
但它不起作用 建议答案。
我想去编辑标签格式的微粒部分。
答案 0 :(得分:2)
简单传递uri
parameter
'index.php/back-office-panel/User_master/tab4'
<a href="<?php echo $this->config->item('base_url') . 'index.php/back-office-panel/User_master/tab4' ?>">
PHP:检查condition
并回复active
中的class
tab.
if(isset($this->uri->segment(3)) && $this->uri->segment(3)=='tab4'){
echo 'active';
}