根据条件激活默认选项卡

问题描述 投票:1回答:3

我有以下代码一个页面,其中包含3个选项卡,如下所示:

<div id="tab-container">
<button class="tablink" onclick="openPage('Wall', this, '#F06078')" id="defaultOpen">Wall</button>
<button class="tablink" onclick="openPage('Profile', this, '#F06078')">Profile</button>     
<button class="tablink" onclick="openPage('Gallery', this, '#F06078')">Gallery</button> 

我们的想法是将任何从控制器调用的选项卡设置为默认值并放在其上。我尝试将$ data传递给页面,但它告诉我它未定义。我也想也许可以将信息存储在会话中并在选项卡所在的页面上调用它,但是我对编码没有那么灵活。

function index ($page='wall') {         

$data['defaultOpen'] = 'wall';
$data['images_model'] = $this->images_model->get_images();          

$this->load->view($page, $data);            
        }

我知道现在的代码并不是全部,但希望你能得到这个想法。我可能需要在php / js中使用IF语句,我希望有人可以给我一些反馈。提前感谢所有输入。

codeigniter tabs defaulttablemodel
3个回答
0
投票

控制器:

public function index ($page = 'wall') {
     $this->load->helper('url'); // only if you haven't load helper in autoload.
     $data['images_model'] = $this->images_model->get_images();
     $this->load->view('viewName', $data);
}

观点:

<?php $active_tab = end($this->uri->segment_array());?>
<button class="tablink<?php echo ($active_tab == 'wall')? ' active':''; ?>" onclick="openPage('Wall', this, '#F06078')" id="defaultOpen">Wall</button>
<button class="tablink<?php echo ($active_tab == 'profile')? ' active':''; ?>" onclick="openPage('Profile', this, '#F06078')">Profile</button>     
<button class="tablink<?php echo ($active_tab == 'gallery')? ' active':''; ?>" onclick="openPage('Gallery', this, '#F06078')">Gallery</button>

0
投票

第一种方法是使用URL中的参数,如http://localhost/example.com/home?tab=wall

然后使用此URL参数激活选项卡

$tab = $this->input->get('tab'); //wall
<button class="tablink <?php if($tab == 'wall'){ echo 'active';}?>" onclick="openPage('Wall', this, '#F06078')" id="defaultOpen">Wall</button>

同样适用于其他标签

第二种方法是将变量传递给视图。在函数中使用变量而不是参数

function index() {         
  $data['defaultOpen'] = 'wall';
  $data['images_model'] = $this->images_model->get_images();          
  $this->load->view($page, $data);            
}

像这样使用$defaultOpen

<button class="tablink <?php if($defaultOpen == 'wall'){ echo 'active';}?>" onclick="openPage('Wall', this, '#F06078')" id="defaultOpen">Wall</button>

0
投票

尝试这样的事情

// controller
public function index ($page = 'wall') {

    // pass the selected data to view
    $data['selectedPage'] = $page;
    $data['images_model'] = $this->images_model->get_images();

    $this->load->view('viewName', $data);  

}

// view

// use ternary operator to set active class to tab
// example:
// <?php echo $selectedPage== 'wall' ? 'active' : '' ?>
// code above means if $selectedPage equals 'wall', set class to active,
// if not do nothing
<button class="tablink <?php echo $selectedPage== 'wall' ? 'active' : '' ?>" 
   onclick="openPage('Wall', this, '#F06078')"id="defaultOpen">Wall</button>
<button class="tablink <?php echo $selectedPage== 'profile' ? 'active' : '' ?>" 
   onclick="openPage('Profile', this, 
 '#F06078')">Profile</button>     
<button class="tablink <?php echo $selectedPage== 'gallery' ? 'active' : '' ?>" 
   onclick="openPage('Gallery', this, 
 '#F06078')">Gallery</button> 
© www.soinside.com 2019 - 2024. All rights reserved.