“Как вызвать функцию PHP из Ajax” Ответ

Как вызвать функцию PHP из Ajax

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

Заполните Ajax запрос jQuery PHP Call | 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

Ответы похожие на “Как вызвать функцию PHP из Ajax”

Вопросы похожие на “Как вызвать функцию PHP из Ajax”

Больше похожих ответов на “Как вызвать функцию PHP из Ajax” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования