0
我試圖通過點擊按鈕將選定的id傳遞給js。yii:在js中傳遞參數
我的代碼是這樣的:
array(
'class'=>'CButtonColumn',
'template'=>'{email}',
'buttons'=>array
(
'email' => array
(
'label'=>'Send an e-mail to this user',
'click'=>'function($data->userId){
var y=confirm("Are you sure to send mail to this user?");
if(y==true){
window.location="todoList/sendEmail/$data->userId";
}
}',
),
),
),
我在這裏沒能獲得用戶ID裏面的js。
我能在這裏做什麼?