我想在触发CakePHP的JsHelper的事件函数时放一个加载 div。这是我的代码:
$this->Js->get('#MonthlyProgressProjectId')->event('change',
$this->Js->get('#MonthlyProgressAddForm')->request(array(
'action' => 'get_institution'), array(
'update' => '#institution',
'dataExpression'=>TRUE,
'method'=>'POST',
'async'=>TRUE,
'data' => $js->serializeForm(array('isForm' => TRUE, 'inline' => TRUE)))));
在这里你看,我得到了表格,然后使用了这个request()
函数。但是在触发此功能时,我想显示一个加载 div。我怎样才能做到这一点?