我在我的 CakePHP 项目中使用 jquery 选项卡。这是我的脚本:
$(function() {
$( "#tabs" ).tabs();
});
这是我的标签代码
<div id="tabs">
<ul>
<li><?php echo $this->Html->link('Statistics', array('action' => 'overview_stats', $current_user['id']))?></li>
<li><?php echo $this->Html->link('Orders', array('action' => 'overview_orders', $current_user['id']))?></li>
<li><?php echo $this->Html->link('Past Orders', array('action' => 'overview_past_orders', $current_user['id']))?></li>
<li><?php echo $this->Html->link('Blog Pages', array('action' => 'overview_blog_pages', $current_user['id']))?></li>
<li><?php echo $this->Html->link('Chextands', array('action' => 'overview_chextands', $current_user['id']))?></li>
</ul>
</div>
每次单击选项卡时,都会在每个选项卡中呈现整个页面。有没有办法只在我的 .ctp 文件中呈现视图?