自動的に生成された各 div にコメント フィールドがあります。最初の投稿でのみ、ページを更新せずに ajax が機能します。
while($fimage = mysql_fetch_assoc($followers)){
.........
<form class="commentFiled" method='post' id="comment" name="comment"
action="func/post_comment.php" >
<input required type="text" id="com" name="com" placeholder="Write a comment..." style="width:97%; height: 45px;"
class="commentTextField">
<input type="hidden" name="p" value="<?php echo $disid ?>" id="photo" />
</form>
私のajaxForm
<script type="text/javascript">
$("#comment").ajaxForm( {
target: '#wtf',
success: function() {
$('#com').val('');
$('#com').blur();
//$('#da').slideUp('fast');
}
});
私が望むのは、投稿するときに各投稿で更新されず、フォームが2番目の投稿を取得しないことID
です。、私が何をすべきか教えていただけますか?私はここで迷っているからです。ありがとう