我创建了 Yii Bootstrap TbMenu。如何动态添加活动类?
$this->widget('bootstrap.widgets.TbMenu',
array(
'type' => 'list',
'items' => array(
array(
'label' => 'Home',
'url' => '#',
'itemOptions' => array('class' => 'active')
),
array('label' => 'Library', 'url' => '#'),
array('label' => 'Applications', 'url' => '#'),
)
)
);