yii2.0实现隐藏form中的label标签
时间:2019-12-24 14:55
隐藏标签方式一: 隐藏标签方式二: 隐藏标签方式三: 补充: 默认常规方式: 修改标签内容 相关文章教程推荐:yii教程 以上就是yii2.0实现隐藏form中的label标签的详细内容,更多请关注gxlsystem.com其它相关文章!<?= $form->field($model, 'ee_type', ['labelOptions'=>['class'=> 'hide']])->dropDownList(YiiLib::loadDDList())?>
<?= $form->field($model, 'ee_type')->dropDownList(YiiLib::loadDDList())->label(false) ?>
<?= $form->field($model, 'ee_type', ['options'=>['class'=>'hide']])->dropDownList(YiiLib::loadDDList()) ?>
<?= $form->field($model, 'ee_type')->dropDownList(YiiLib::loadDDList()) ?>
<?= $form->field($model, 'ee_type')->dropDownList(YiiLib::loadDDList())->label('Welcome To
<small>YiiLib.com </small>') ?>