2013-08-26 38 views

回答

0

OK,所以我们修复的问题是通过Ajax请求发送参数:

function sendRowId(rowid,status) { 


    var myData = "row=" + rowid; 
    $.ajax({ 
      url: "<?php echo $this->url(array ('module' => 'gmarim', 'controller' => 'student', 'action' => 'select'), null, false, true);?>", 
      data : myData, 
      type: 'POST', 
      success: function(d,s,x){ 

      }, 
      async: false 
     }); 
}