久々に触って忘れていたけど、
Ajaxをコールする前にpreventDefault()してはいけない。
$('#submit').on('submit', evt => {
// call ajax
evt.preventDefault();
})
参考
https://stackoverflow.com/questions/20352799/ajax-form-submit-with-preventdefault
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
久々に触って忘れていたけど、
Ajaxをコールする前にpreventDefault()してはいけない。
$('#submit').on('submit', evt => {
// call ajax
evt.preventDefault();
})
参考
https://stackoverflow.com/questions/20352799/ajax-form-submit-with-preventdefault
Register as a new user and use Qiita more conveniently
Go to list of users who liked