在 Yii Bootter 中使用 TbTabs 时如何控制选项卡事件的更改?
这是我的代码(但是当我更改标签时它没有提醒):
$this->widget('bootstrap.widgets.TbTabs', array(
'type' => 'tabs',
'tabs' => array(
array('label' => 'Trainer Modules', 'content' => 'content tab 1',
array('label' => 'Default Modules', 'content' => 'content tab 2',
),
'events' => array(
'change' => "js:function(){alert('123');}"
)
));