我在这里做错了什么?

时间:2016-08-02 06:06:55

标签: ajax this response

嘿我不知道为什么$(这个)不能在我的ajax代码中工作。我想在#feedback元素中添加响应。

这是我的html结构图像

enter image description here

AJAX

$("form#userComment").on("submit",function(e){
e.preventDefault();
$.ajax({
    url  : "request/postComment.php",
    type : "POST",
    data : new FormData(this),
    dataType : "text",
    contentType : false,
    processData : false,
    beforeSend : function(http){
        $("#upload").val("Posting..");
        $("#comment").val("");
    },
    success : function(response,status,http){
         var text = response.split(" ");
         $("#upload").val("Post");
        if(text[3] === "'error'"){
            $(".response").html(response);
            $(".response").slideDown();
        }else{         
           $(this).prev().append(response);
        }
    },
    error : function(http,status,error){ 
        $("#comment").val("Post");
        $('.response').html("<span class='error'>Something went wrong</span>");
        $(".response").slideDown();
    }
})
})

0 个答案:

没有答案