创建像
这样的ajax按钮时echo CHtml::ajaxSubmitButton(
'Submit request',
array('logInOfficeEmp/update&id='.$model->id),
array(
'replace'=>'#req_res02',
array('id' => 'inside_popup') // how to retrieve this
)
);
如何在控制器中检索ID,请注意您使用Yii::app()->request->isAjaxRequest()
答案 0 :(得分:1)
传递如下:
<?= CHtml::ajaxButton('Click', $this->createUrl('path/here', array('myparam' => 'test)), array('success' => 'js:function(){alert("test");}'), array('class' => 'cssclasses'))?>
然后会在$_POST['myparam']