我在自动生成的每个 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');
}
});
ID
我想要的是,在每个帖子上,当我发布它时它不会刷新,我猜该表单不会得到第二个帖子。,你能告诉我我应该怎么做吗?因为我在这里迷路了。谢谢