29
27

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.

input type="file"でC:\fakepath\が入る問題の対処法

Last updated at Posted at 2015-11-14

input type="file"を非表示にして
独自のデザインでファイル選択フォームを作っていた時のこと。
$("#file").val()

したら
c:\fakepath\<ファイル名>

調べるとセキュリティ的にクライアントのフルパスは取得できなくなったみたい。。
でもそのままなのもダサいので
しぶしぶreplaceを使い置換することに。

$("#file").val().replace(/C:\\fakepath\\/g ,"");

なんか強引な気がするけどとりあえずかな。。

追記

コメント欄で教えてもらった方法(2015年12月15日18:24追加)
$('#file')[0].files[0].name

29
27
1

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
29
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?