我在网页中使用了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
标记,则如下图所示显示。如何实现呢?
最佳答案
尝试添加此行,'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')
)); ?>
关于php - Yii Bootstrap小部件TbButton的HTML标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24008696/