防止默认仍然是res.redirect

时间:2017-05-28 22:16:57

标签: ajax redirect preventdefault

$('#submit-button').on('click', function(e) {
    e.preventDefault();
    $.ajax({
       type: "POST",
       url: window.location.pathname,
       data: {
         "title": $('#event-title').val(),
         "description": $('#event-description').val(),
         "name": $('#owner-name').val(),
       }
   });
});

我想要一个ajax请求,但我也希望该按钮随后重定向到res.redirect页面。如果我删除了防止默认值,它会重定向,但它不会发出ajax请求。我该怎么做呢?

0 个答案:

没有答案