我的视图中有这个 ajax 提交按钮,我想在单击它时验证字段。我将为此操作申请哪些特定属性?
echo $this->Js->submit('Save Post', array(
'before'=>$this->Js->get('#sending')->effect('fadeIn'),
'success'=>$this->Js->get('#sending')->effect('fadeOut'),
'update'=>'#success',
'id' => 'btnSubmit',
));
谢谢!