“So rufen Sie PHP -Funktion von AJAX auf” Code-Antworten

So rufen Sie PHP -Funktion von AJAX auf

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

Vollständige AJAX -Anfrage JQuery PHP Call | AJAX -Anfrage

<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

Ähnliche Antworten wie “So rufen Sie PHP -Funktion von AJAX auf”

Fragen ähnlich wie “So rufen Sie PHP -Funktion von AJAX auf”

Weitere verwandte Antworten zu “So rufen Sie PHP -Funktion von AJAX auf” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen