我想向Js添加2个回调 - >提交,我的第一个返回true或false。继续我想要采取行动。我的意思是如果它是真的那么它会在那一刻继续停止其他行动。
我已经尝试了但是它没有进行2次回调。 Plaese帮助。
echo $this->Js->submit("Apply",
array(
'id' => 'submitForm', 'div' => false, 'class' => 'general_button', 'style' => array('float:none;', 'margin: 10px;'),
'url' => array(
'controller' => 'categories', 'action' => 'index', 'field' => $search_term, 'value' => $search_value, 'parentId' => $parentId
),
'update' => '#listID',
'confirm' => 'Are you sure you want to apply action to selected records ??',
'before' => $this->Js->event('click', 'return checkboxCount();', false),
'before' => $this->Js->get('#loaderID')->effect('fadeIn', array('buffer' => false)),
'complete' => $this->Js->get('#loaderID')->effect('fadeOut', array('buffer' => false)),
)
);
我将如何继续使用它。函数return checkboxCount();
返回true或false。但在这种情况下,我的功能甚至都没有被调用。