我正在使用 Yii 1.1.10。我想知道如何将 CSS 类添加到下拉列表中。我正在使用 CActiveForm
例如,如何将 CSS 类添加到此下拉列表中?
<?php echo $form->labelEx($model,'chassis'); ?>
<?php echo $form->dropDownList($model, 'chassis',
array('saloon' => 'saloon', 'station wagon' => 'station wagon', ),
);
?>
编辑: 我的代码中有这个
array('empty' => 'Select one of the following...')
我在那里让它成为默认消息。但不知何故它干扰了使用
'htmlOptions'=>array('class'=>'yourCssClass')
或者
array('class'=>'your_class_name')
所以只要我删除它,这两个建议都有效!谢谢大家