中的问题radioButtonList
。我有两个radio
按钮,如下所示。我正在AJAX
对第一个单选按钮执行操作。
但是当我尝试单击第二个单选按钮时,第一个单选按钮没有被取消选中,我无法检查第二个单选按钮。
<?php echo CHtml::radioButtonList( 'ck_Skill','',
array(4 => 'Professional Skill', 5 => 'Suggestion'),
array('separator' => ' ',
'onChange'=>CHtml::ajax(array('type'=>'POST', 'dataType'=>'json',"url" =>array("search/search"),
"success"=>"function(response){
$('#textfield-wrapper').html(response.data);
}",
))));?>
我在这里想念什么?