2
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 5 years have passed since last update.

JavascriptでPOST(Submit)後にイベントを発火させる方法がわからない。→解決

Last updated at Posted at 2019-09-27

会社の受付フォームを趣味でごりごり作成しております。
POST後にイベント発生させたい。やり方がわかりません。
具体的には、「登録」をクリックするとPOST送信され
POST後にイベントを発火して「<fieldset id="itemInput0" hidden>」の「hidden」を「true」にして表示させたい。
どなた様かご教授お願いします。
→(解決)POST後、Javascriptのプログラムが走るので、その時に処理できました。ありがとうございました。

form.html
<form action="{% url 'form_daihen' %}" method="POST">
  {% csrf_token %}  
  
  <!----------コード省略----------->
  
  <fieldset id="itemInput0" hidden>

    <!----------コード省略----------->

  </fieldset>
   
  <!----------コード省略----------->
  
  <button class="btn btn-primary" type="submit">登録</button>
</form>
2
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
2
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?