“JQuery Ajax erhalten Sie Antwortcode” Code-Antworten

JQuery Ajax erhalten Sie Antwortcode

$.ajax({
    //...        
    success: function(data, textStatus, xhr) {
        console.log(xhr.status);
    },
    complete: function(xhr, textStatus) {
        console.log(xhr.status);
    } 
});
Yossimal

Ajax erhalten HTML -Antwort

//your jquery code will be like this:
$.ajax({
      type: 'POST',
      url: $url,
      data: new FormData(this),
      dataType: 'json',
      contentType: false,
      processData:false,//this is a must
      success: function(response){ 
      		$('your_selector').html(response);
      }
});

//php code will be like this
echo '<div>some html code</div>';
die();
Anime Freak

Ähnliche Antworten wie “JQuery Ajax erhalten Sie Antwortcode”

Fragen ähnlich wie “JQuery Ajax erhalten Sie Antwortcode”

Weitere verwandte Antworten zu “JQuery Ajax erhalten Sie Antwortcode” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen