这是我的yii下拉:
$dataForCountryDropDown1=array(
'india'=>'india',
'us'=>'us',
);
echo $form->dropDownList($myAccountAddress,'countryName',
array ($dataForCountryDropDown1),array('onchange'=>'hideStateDropDownForm(this)',
'prompt'=>'Select Country','class'=>"drop-select"));?>
我在下拉列表中收到0。这里有什么问题?
答案 0 :(得分:1)
您正在将数组嵌套在另一个数组(array ($dataForCountryDropDown1)
)中。试试这个:
$dataForCountryDropDown1=array(
'india'=>'india',
'us'=>'us',
);
echo $form->dropDownList($myAccountAddress,'countryName',
$dataForCountryDropDown1, array('onchange'=>'hideStateDropDownForm(this)',
'prompt'=>'Select Country','class'=>"drop-select"));?>