Heim > Artikel > PHP-Framework > Yii2.0 implementiert das Ausblenden der Beschriftung im Formular
Tag-Methode eins ausblenden:
<?= $form->field($model, 'ee_type', ['labelOptions'=>['class'=> 'hide']])->dropDownList(YiiLib::loadDDList())?>
Tag-Methode zwei ausblenden:
<?= $form->field($model, 'ee_type')->dropDownList(YiiLib::loadDDList())->label(false) ?>
Tag-Methode drei ausblenden:
<?= $form->field($model, 'ee_type', ['options'=>['class'=>'hide']])->dropDownList(YiiLib::loadDDList()) ?>
Zusätzlich:
Normale Standardmethode:
<?= $form->field($model, 'ee_type')->dropDownList(YiiLib::loadDDList()) ?>
Tag-Inhalt ändern
<?= $form->field($model, 'ee_type')->dropDownList(YiiLib::loadDDList())->label('Welcome To <small>YiiLib.com </small>') ?>
Empfohlene Tutorials zu verwandten Artikeln: yii-Tutorial
Das obige ist der detaillierte Inhalt vonYii2.0 implementiert das Ausblenden der Beschriftung im Formular. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!