“$ post in jQuery” Ответ

JQUERY POST

$.post( "test.php", { name: "John", time: "2pm" })
  .done(function( data ) {
    alert( "Data Loaded: " + data );
  });
Glamorous Goat

JQUERY POST

$.post("demo.php",{id:1})
  .done(function(data) { console.log(data) })
  .fail(function() { console.error("Error") })
ProfCode

$ post in jQuery


$.ajax({
    method: "POST",
    url: "some.php",
    data: { name: "John", location: "Boston" }
}).done(function( msg ) {
    alert( "Data Saved: " + msg );
});

Delightful Deer

$ post in jQuery

$(function(){
    $('#myForm').on('submit', function(e){
      e.preventDefault();
      $.post('http://www.somewhere.com/path/to/post', 
         $('#myForm').serialize(), 
         function(data, status, xhr){
           // do something here with response;
         });
    });
});
Friendly Ferret

post jquery

$.post( "ajax/test.html", function( data ) {
  $( ".result" ).html( data );
});
UnAngeloCheSiChiamaTheKing

Ответы похожие на “$ post in jQuery”

Вопросы похожие на “$ post in jQuery”

Больше похожих ответов на “$ post in jQuery” по JavaScript

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

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