1
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.

HTML5のドラッグ&ドロップ機能を使う際の注意点

Last updated at Posted at 2018-12-30

draggable="true" が効かない!

こんな地雷を踏むとは思いませんでした…TT

FireFox

dragstart に充てたリスナーが受け取るeventにdataTransferというオブジェクトが入っています。こいつにsetDataというメソッドがあり、これにデータを入れないと、ドラッグしたと判定してくれません。

下記のように、ダミーでもいいのでデータを入れてしまうのは一つの解決策になります。

document.getElementById("anyDragItem")
.addEventListener("dragstart", (e) => e.dataTransefer.setdata("text", "dummy"))

chrome

dragstart に充てたリスナーが event.preventDefault() を実行すると、ドラッグしたと判定してくれなくなりますので、そこさえ注意していれば問題ありません。

1
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
1
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?