“JS Form Seroialize” Código de respuesta

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

Cómo serializar los datos de formulario en 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 Form Seroialize

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

Respuestas similares a “JS Form Seroialize”

Preguntas similares a “JS Form Seroialize”

Más respuestas relacionadas con “JS Form Seroialize” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código