0
<td><?php echo $form->labelEx($model,'Is Scholarship?');?></td>
<td><?php echo $form->radioButtonList($model,'is_scholar',array(
                    'Yes'=>'Yes',
                    'No'=>'No',),
                     array('size'=>100,'class'=>'e'.$arrMF[8],'disabled'=>$isVerify,'uncheckValue'=>null)
    );?>
<td><?php echo $form->error($model,'is_scholar');?></td>

我不知道该怎么做。我需要使用 jQuery。我会选择是或否。如果我选择是,一个 div 将是display:block 如果我选择否,一个 div 将是display:none,我将执行来自我的控制器的查询

4

1 回答 1

1

你可以这样做:

$('input[id="yes"]').change(function(){
    $('div').show();
});

$('input[id="no"]').change(function(){
    $('div').hide();
});

检查小提琴:http: //jsfiddle.net/5cRdU/

于 2012-12-14T07:39:58.433 回答