5
我有以下積極的下拉列表PHP的Yii - ActiveDropDownList()默認選擇
<?php
echo CHtml::activeDropDownList($project, 'city', CHtml::listData(City::model()->findAll(), 'id', 'name'), array('class'=>'st-form', 'onchange' => 'getLocationByCity(this)'));
?>
我要選擇的選項添加到在下拉列表中的第10值在創建列表時,該怎麼辦我這樣做。
謝謝。