Answer the question
In order to leave comments, you need to log in
Json, $jquery ajax Where can I find documentation for downs?
I re-read a lot of guides and cheat sheets, and I can’t understand how it works.
Chew on the example of js and php code please! or help me find a very understandable documentation
Answer the question
In order to leave comments, you need to log in
In fact, everything is not so difficult.
What happens when you enter a URL into the address bar in a browser? Very simplified, then:
In the case of AJAX, the general essence remains the same:
In its simplest form, an AJAX request using jQuery looks like this:
$.ajax({
url: 'some url' //URL, по которому будет сделан запрос
}).done(function(dataFromPHP){
//Сюда мы попадаем, если запрос завершен успешно
//Все что PHP должен был вывести в браузер при классическом обращении
//через адресную строку браузера (текст, HTML, всё что угодно),
//будет прочитано JavaScript-ом и помещено в переменную dataFromPHP.
//Далее мы можем свободно работать с этими данными.
//К примеру, показать их с помощью alert
alert(dataFromPhp);
}).fail(function(){
//Сюда мы попадаем, если по каким-то причинам запрос прошел не успешно
alert('Не удалось произвести запрос')
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question