有关下拉列表,如何为单个选项添加类


For a dropdown how to add the class for the single option

在 yii 中,我如何在下拉列表中拥有每个选项的类。

Try This:-
<?php echo $form->dropDownList($model,'img_category_id', CHtml::listdata(CategoryMaster::model()->findAll(array("order" => 'LOWER(category_name) ASC')), 'category_id', 'category_name'),array('class'=>'your class'); ?>