投稿のリストを連結しました。これにより、ユーザーはそれぞれにコメントできます (コメントは 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>