“Comment appeler la fonction PHP à partir de l'ajax” Réponses codées

Comment appeler la fonction PHP à partir de l'ajax

$.ajax({ url: 'phpscriptname.php',
         data: {function2call: 'getEmployeesList', otherkey:otherdata},
         type: 'post',
         success: function(output) {
                      alert(output);
         }
});
Jolly Jackal

Terminez l'appel PHP de demande Ajax | Demande AJAX

<script type="text/javascript">
    function ajaxCall(formID, showID) {
        var form = $('#' + formID);
        $.ajax({
            type: form.attr('method'),
            url: form.attr('action'),
            data: form.serialize(),
            dataType: "JSON",
            cache: false,
            success: function (data, status, xhr) {
                $('#' + showID).html('').fadeOut('fast');
                $('#' + showID).html(data).fadeIn('slow');
            },
            error: function (xhr, status, error) {
                //alert(xhr);
                console.error(xhr);
            }
        });
    }
</script>
Amin Arjmand

Réponses similaires à “Comment appeler la fonction PHP à partir de l'ajax”

Questions similaires à “Comment appeler la fonction PHP à partir de l'ajax”

Plus de réponses similaires à “Comment appeler la fonction PHP à partir de l'ajax” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code