我正在使用 Yii2 的 Bootsrap Tabs 小部件(yii\bootstrap\Tabs -- http://www.yiiframework.com/doc-2.0/yii-bootstrap-tabs.html)
我想label
在构建这个小部件的数组中插入 HTML 标记作为键的值。
我尝试将 key => value 对'encode' => true
作为可选数组元素之一包含在内,但什么也没做。
这是我的代码:
<?=
Tabs::widget([
'navType' => 'nav-pills',
'options' => ['class' => 'course-manager'],
'items' => [
[
'label' => '<i class="fa fa-book"></i> Show Books',
'encode' => true,
'content' => '<h2>Anim pariatur cliche...</h2>',
'active' => true
],
[
'label' => '<i class="fa fa-graduation-cap"></i><span> Show Students</span>',
'encode' => true,
'content' => 'Anim cliche...',
],
[
'label' => '<i class="fa fa-tags"></i><span> Show Licenses</span>',
'encode' => true,
'url' => 'http://www.example.com',
],
],
]);
?>
这些标签显示为文本而不是 HTML。