$('#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请求。我该怎么做呢?