LoginSignup
4
4

More than 5 years have passed since last update.

シングルページアプリケーション(SPA)でページ遷移せずにファイルアップロードをする際の注意

Last updated at Posted at 2016-11-24

ページ遷移せずに2回目のファイルアップロードをしようとした場合、ブラウザによっては失敗することがある。

これは、input タグのvalue に既に値が入っていることが問題なので、以下のようにリセットすれば正常に動作する。

document.getElementById("target_id").value = "";

jQueryなら以下。

$("#target_id").val("");

4
4
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
4
4