<div class="comments_<?= $comment['id']?>">
//тут код
</div>
$('body').on('click', '.btn', function () {
var commentId = this.id.slice(7);
$.ajax({
type: "POST",
url: "/export/post",
data: {
id: commentId
},
success: function (data) {
if(data === 'ok'){
$(".comments_" + commentId).remove();
} else {
console.log('Все плохо');
}
}
})
});
if($_SERVER[ 'REQUEST_METHOD' ] === 'POST') {
if( $id = is_numeric($_POST['id']) ) {
return 'ok';
}
}