首先,我自定义数组arr
,然后使用密钥apple设置初始值,但它不起作用。
<?php
$arr = array('apple'=>'red','banana'=>yellow,'watermelon'=>'green');
echo $form->dropDownList(
$model,
'color',
$arr,
array(
'options'=>array('apple'=>array('selected'=>true))
));
?>
答案 0 :(得分:0)
在dropDownList
之前设置attrubute$model->color='apple';
或者在表单中设置它(扩展CFormModel),例如
public $color = 'apple';