“Сделайте Ajax запрос Post jQuery” Ответ

Сделайте Ajax запрос Post jQuery

$.ajax({
  method: "POST",
  url: "some.php",
  data: { name: "John", location: "Boston" }
})

Better Bison

jquery ajax $ .post с данными

$.post('http://example.com/form.php', {category:'client', type:'premium'}, function(response){ 
      alert("success");
      $("#mypar").html(response.amount);
});
The Strangest Salamander

Ответы похожие на “Сделайте Ajax запрос Post jQuery”

Вопросы похожие на “Сделайте Ajax запрос Post jQuery”

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

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