我在网页中使用了Yii Bootstrap小部件。这是我的代码:
<?php
$this->widget('bootstrap.widgets.TbButton', array(
'buttonType'=>'submit',
'type'=>'primary',
'label'=>'S U B M I <br>T',
'htmlOptions'=>array(
'name'=>'step2',
'id'=>'winery-selected',
'class'=>'btn btn-primary btn-responsive'
)
));
?>
<br/>
我想在br
元素中添加label
标记。如果我只是在br
内添加label
标记,则会显示如下图所示。
如何实现这一目标?
答案 0 :(得分:2)
尝试添加此行'encodeLabel'=>false,
以下是您的代码,
<?php $this->widget('bootstrap.widgets.TbButton', array(
'buttonType'=>'submit',
'encodeLabel'=>false,
'type'=>'primary',
'label'=>'S U B M I <br>T',
'htmlOptions'=>array('name'=>'step2','id'=>'winery-selected','class'=>'btn btn-primary btn-responsive')
)); ?>