我有一个问题,我是 yii 的新手,我很喜欢 ajax。假设我在 yii 中有一个表格,如下所示:
<?php echo $form->dropDownListRow($model,'study_type_id', $studyTypeList, array(
'options'=>array($default['studyTypeId']=>array('selected'=>true)),
'id'=>'study-type-list',
'class'=>'span5 study-create-input')
); ?>
说下拉菜单中的选项是“studytype1”,“studytype2”..等等..
我如何以字符串形式访问这些选项..(抱歉解释不好)..在 ajax 脚本中说..
Yii::app()->clientScript->registerScript('generateStudyName', "
var updateStudyName = function() {
var studyType = ??//I want to access the value selected in the drop down list
that i hope to use
}");
谢谢 !