Masquer la première méthode de balise :
<?= $form->field($model, 'ee_type', ['labelOptions'=>['class'=> 'hide']])->dropDownList(YiiLib::loadDDList())?>
Masquer la méthode de balise deux :
<?= $form->field($model, 'ee_type')->dropDownList(YiiLib::loadDDList())->label(false) ?>
Masquer la méthode de balise trois :
<?= $form->field($model, 'ee_type', ['options'=>['class'=>'hide']])->dropDownList(YiiLib::loadDDList()) ?>
Supplémentaire :
Méthode normale par défaut :
<?= $form->field($model, 'ee_type')->dropDownList(YiiLib::loadDDList()) ?>
Modifier le contenu de la balise
<?= $form->field($model, 'ee_type')->dropDownList(YiiLib::loadDDList())->label('Welcome To <small>YiiLib.com </small>') ?>
Tutoriels d'articles connexes recommandés : Tutoriel yii
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!