“JQuery AJAX Función de éxito no se ejecuta” Código de respuesta

¿Podemos llamar a Ajax dentro del éxito de Ajax?

$.ajax({
    type: "post",
    url: "ajax/example.php",
    data: 'page=' + btn_page,
    success: function (data) {
        var a = data; // This line shows error.
        $.ajax({
            type: "post",
            url: "example.php",
            data: 'page=' + a,
            success: function (data) {
   
            }
        });
    }
});
Ankur

JQuery AJAX Función de éxito no se ejecuta

For many times I have encountered similar problems and most of the time the reason was a malformed json. 
Try getting the result as text data type to see whether this is your problem.
Also, I'd like to ask if you're using a parameter like "&jsoncallback=?" in your url, 
since your data type is jsonp instead of simple json.
Muhammad Hassan

Respuestas similares a “JQuery AJAX Función de éxito no se ejecuta”

Preguntas similares a “JQuery AJAX Función de éxito no se ejecuta”

Más respuestas relacionadas con “JQuery AJAX Función de éxito no se ejecuta” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código