我在phtml页面中迭代一个表单,当我单击按钮时如何提交或验证表单。
因为当我迭代表单时,所有表单的 id 都是相同的
我正在使用 Zend Framework,我像这样在我的视图中启动表单来为每个表单获取不同的 id
<?php
$commentForm = new Application_Form_Comment**($answerId)**;
echo $commentForm?>
我发送了 $answer['answer_id'] 以将其放入表单 id 中,如下所示
<form id="comment_form64623" method="post" action="">
这是最好的方法吗?或者在 Jquery 中有一种方法来处理这个问题?