“jquery form serialize объект” Ответ

jQuery serialize

var datastring = $("#contactForm").serialize();
$.ajax({
    type: "POST",
    url: "your url.php",
    data: datastring,
    dataType: "json",
    success: function(data) {
        //var obj = jQuery.parseJSON(data); if the dataType is not specified as json uncomment this
        // do what ever you want with the server response
    },
    error: function() {
        alert('error handling here');
    }
});
Stupid Sheep

jquery serialize form data для объекта

var data = {};
$(".form-selector").serializeArray().map(function(x){data[x.name] = x.value;}); 
Old-fashioned Orangutan

jquery form serialize объект

$(function(){
  $('form').on('submit', function(e){
    e.preventDefault();
    $(this).serializeObject().done(function(o){
      if(window.console) console.log(o);
      var j = JSON.stringify(o);
      alert(j);
      //window.open("data:image/png;base64," + o.userfile.data);
    });
  });
});
Lonely Locust

Ответы похожие на “jquery form serialize объект”

Вопросы похожие на “jquery form serialize объект”

Больше похожих ответов на “jquery form serialize объект” по JavaScript

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

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