我在 cakephp 2 中构建 ajax 表单时遇到了麻烦,这显然自 1.3 以来发生了很大变化。
我正在使用以下代码:
<div id="commentForm">
<div id="commentStatus"></div>
<?php
echo $this->Form->create('Comment', array('action' => 'save', 'default' => false));
echo $this->Form->input('Comment.comments_name');
echo $this->Form->input('Comment.comments_email');
echo $this->Form->input('Comment.comments_text');
echo $this->Js->submit('Save', array('update' => '#commentStatus'));
echo $this->Form->end();
?>
但是,按下按钮时不会提交表单。
我会感谢任何帮助!
谢谢!