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

【jQuery】jQueryで、クリックされた【Laravel】の画像ファイルのデータを取得する方法

Posted at

###パスの最後の/の後が画像のファイル名

画像出力のHTML
<img src="/storage/anpanman.png" alt="anpanman" >
画像のsrcを取得→ファイル名を取得
$('img').click(function() {
     $object = this;
     filename = $object.getAttribute("src").split("/").pop(); // ファイル名を取得         
});

split("/")で/ごとに配列に分ける
pop()で配列の最後の要素だけ取り出す(つまりファイル名)

意外に調べても出てこなかった。。。あんまり苦労するところじゃないのかもしれん。。。

初心者はつまづく気がするので、参考になれば幸いです。

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?