在AJAX Promise中清除表单输入

时间:2018-11-21 14:58:37

标签: javascript jquery ajax

在AJAX调用中的承诺点,希望清除我已将其标识为“模态形式”的表格。现在,单击“提交”按钮后,该表单仍将填充客户输入的表单。您能提供的任何见解将不胜感激!谢谢!

$(".submit-button").click(function(event) {
    event.preventDefault();
    $.ajax("/post", {
        type: "POST",
        data: {
            name: $("input[type=text][name=firstname]" ).val(),
            message: $(".post").val(),
            articleId: $("#modal-headline").attr("value"),
        }
    }).then(function (response) {
        $("#modal-form").reset();
        console.log(response);
    }).catch(function (error) {
        console.log(error);
    })
});

0 个答案:

没有答案