“JS Forme Serialize” Kod odpowiedzi

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

Jak serializować dane formularza w JS

const serialize = (formElement) => {
    let data = new FormData(formElement);

    let obj = {};
    for (let [key, value] of data) {
        obj[key] = value;
    }
    return obj;
}
Adorable Antelope

JS Forme Serialize

var form = document.querySelector('form');
var data = new FormData(form);
Weary Warbler

Odpowiedzi podobne do “JS Forme Serialize”

Pytania podobne do “JS Forme Serialize”

Więcej pokrewnych odpowiedzi na “JS Forme Serialize” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu