问题:同一页面上有多个表单,但只提交了第一个表单。
尝试以下操作: 等待提交按钮和表单的数据ID以提交点击的表单(无运气) 使用Javascript创建动态表单。(因为它是在截止日期之后几次尝试解散了这个想法)
USECASE 表单的数量取决于用户。如果他只有一条评论,则提交表格,如果有4条表格,则只提交第4条。
使用Javascript:
$(function() {
$(".submit").click(function() {
var data_id = $(this).data('id');
var form_id = $(this.form).data('id');
if (parseInt(data_id, 10) == parseInt(form_id, 10)) {
var commentid = document.getElementByID('commentid');
alert(commentid + formid);
} else {
alert("10");
}
});
});
PHP代码:
if($comment['Comment_Username'] ==$this->getUser()->getName())
{$output .='div class="panel" data-class="'.$comment['CommentID'].'">';
$output .='<form class="form" action="" method="post" data- id="'.$comment['CommentID'].'">';
$output .='<textarea name="edit_text' class="box" rows="2" cols="1">'.$this->getCommentText($comment['Comment_Text']).'</textarea>';
$output .='<input name="commentid" type="hidden" id="commentid" value="'.$comment['CommentID'].'"/>';
$output .='<input type="button' data-id="'.$comment['CommentID'].'" class="submit" value="submit"/>';
非常感谢任何帮助。 提前致谢
答案 0 :(得分:3)
这里使用错误的引用
$output .='<textarea name="edit_text" class="box" rows="2" cols="1">'.$this->getCommentText($comment['Comment_Text']).'</textarea>';