0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

event.preventDefault();

Last updated at Posted at 2022-12-15

アクションが途中で止まり困っていた。

送信ボタンを押しても何も起こらなかった。
考えた末event.preventDefault();これでこの先のアクションが動かなかったのではないかと考えた。

<form id="*******" action="/******/******" method="get">
  <label for="date">日付</label>
  <input type="date" id="date" name="date">
.
.
.
<script>
  document.getElementById('post_search').onsubmit = function() {
  event.preventDefault(); //これを削除する
  document.getElementById('post_search').date.value;
  console.log(document.getElementById('post_search').date.value);
  };
</script>

結果

その通りだった。
event.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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?