LoginSignup
0
0

More than 5 years have passed since last update.

ajaxが動かない時の注意点

Posted at

久々に触って忘れていたけど、
Ajaxをコールする前にpreventDefault()してはいけない。

$('#submit').on('submit', evt => {
  // call ajax
  evt.preventDefault();
})

参考
https://stackoverflow.com/questions/20352799/ajax-form-submit-with-preventdefault

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0