我有串联的帖子列表,用户可以对每个帖子发表评论(并且评论通过 jquery 获得实时更新)。我决定,因为我为每个帖子使用了一个唯一的变量,所以我可以将它附加到更新 div 的 id 的末尾,也可以将它附加到提交按钮的类的末尾,如下所示:
$my_list .= '
<form action="#" method="post">
<textarea class="commentbox" name="comment" id="comment"></textarea>
<input type="hidden" name="post_id" id="post_id" value=' . $post_id . ' />
<input type="hidden" name="member_id" id="member_id" value=' . $id . ' />
<input type="submit" class="submit' . $post_id . '" value="Comment " />
</form>
' . $comment_list . ' // existing comments queried from the db
<ol id="update' . $post_id . '"></ol> // jquery-ed live update comments
';
?>
与上述相关的一切看起来都很好(即每个提交按钮都有一个唯一的类,每个更新 div 都有一个唯一的 id)。
所以我现在遇到的问题是:如何让我的 js 函数识别每个独特的“提交”?这就是我现在拥有的(下)。但是每当我点击帖子旁边的提交按钮时,什么都没有发生,我的页面只是重新加载,并且一个“#”被添加到 URL 的末尾。我检查了我的实时 http 标头,看起来评论与正确的唯一 $post_id 一起发布......但我相信它在 js 函数处停止。
<head>
<script type="text/javascript">
$(function() {
$(".submit<?php echo $post_id; ?>").click(function() {
var post_id = $("#post_id").val(); // this is the unique id for each story, in a hidden input
var member_id = $("#member_id").val(); // this is a member for the commenter, in a hidden input
var comment = $("#comment").val(); // this is the comment from the input box
var dataString = 'post_id='+ post_id + '&member_id=' + member_id + '&comment=' + comment;
if(comment=='') {
alert('Please enter a valid comment');
} else {
$("#flash").show();
$("#flash").fadeIn(400).html('<span class="loading">Loading Comment...</span>');
$.ajax({
type: "POST",
url: "commentajax.php",
data: dataString,
cache: false,
success: function(html){
$("#update<?php echo $post_id; ?>").append(html);
$("#update<?php echo $post_id; ?> li:last").fadeIn("slow");
document.getElementById('post_id').value='';
document.getElementById('member_id').value='';
document.getElementById('comment').value='';
$("#comment").focus();
$("#flash").hide();
}
});
}
return false;
});
});
</script>
</head>