【发布时间】:2026-01-19 06:15:02
【问题描述】:
我正在尝试使用 Yii Bootstrap 添加下拉登录表单,就像附加的教程一样,但我无法将 HTML 表单添加到 TbNavbar items。
我该如何适应它?
跟随教程:http://mifsud.me/adding-dropdown-login-form-bootstraps-navbar/
代码:
<?php $this->widget('bootstrap.widgets.TbNavbar',array(
'items'=>array(
array(
'class'=>'bootstrap.widgets.TbMenu',
'htmlOptions'=>array('class'=>'pull-right'),
'items'=>array(
array('label'=>'Login', 'url'=>'#', 'visible'=>Yii::app()->user->isGuest, 'items'=>array(
'FORM HTML CODE', // here is the problem, the HTML Form is not working.
)),
),
),
)); ?>
【问题讨论】:
标签: php twitter-bootstrap yii