html
<textarea required=required name ="comment" id="comment"></textarea><br/>
<input type="hidden" id="image" name ="image" value="<?php echo $images[$i]['imageID']?>" />
<input type=button id=postComment value="Post Comment">
commentImage.js $(文件)。就绪(函数(){
$('#postComment').click(function(){
$.ajax({
type:'post',
url:'commentImage.php',
data:{newComment:$('#comment').val(), postID:postID},
success:function(data){
var data = JSON.parse(data);
var comment = makeComment(data['user'], $('#comment').val(), data['date']);
$('#commentsBock').prepend(comment);
$('#comment').val('');
}
})
})
})
function makeComment(user, comment, date){
var comment = '<div><div>'+user+'</div><div>'+comment+'</div><div>'+date+'</div><div>';
return comment;
}
function getComments(){
}
commentImage.php
<?php
session_start();
echo $_POST['comment'];
echo $_POST['image'];
include_once('mysql.php');
...
?>
答案 0 :(得分:0)
#comment
是唯一的ID。如果您在HTML中多次使用它,请不要等待它正常工作,它就不会发生!
只需使用id="comment_"+PostID
之类的PostID即可创建唯一标识符。
并使用$("input[id^='comment_']")
选择所有ID以comment_
开头的ID(^=
做什么)