用ajax和jquery发表评论

时间:2012-03-25 22:59:46

标签: jquery ajax post comments

我想在用户评论后显示发布的评论。只需将其添加到facebook下即可。

我有这个:

 // Interceptamos el evento submit
    $('#CommentAddForm').submit(function() {
        alert("entro");
        alert($(this).attr('action'));

        // Enviamos el formulario usando AJAX
        $.ajax({
            type: 'POST',
            url: $(this).attr('action'),
            data: $(this).serialize(),
            // Mostramos un mensaje con la respuesta de PHP
            success: function(data) {
                $('#result').html(//????????????);
            }
        });        
        return false;
    }); 

但是我不太清楚它是如何工作的,我不知道我该怎么写$('#result').html(//????????????);

变量URL包含在DB中插入注释的路由。它运作良好。 任何的想法?感谢。

顺便说一句,我一直在读这个答案: Ajax/jQuery Comment System 但我仍然没有得到它。

1 个答案:

答案 0 :(得分:0)

好ı完成它,它的工作正常。当你提交时,它会将你的评论附加到评论框中,就像facebook一样。

像这样更改你的代码:

var comment=$('.comment').val(); // your comment text box
$.ajax({
            type: 'POST',
            url: $(this).attr('action'),
            data: $(this).serialize(),
            // Mostramos un mensaje con la respuesta de PHP
            success: function(data) {

            $('.commentbox').append("</br>"+comment); // list of comments. its inserting your last comment at the end of line.

           }
        });