11
13

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.

jQuery で dataTransfer が見つからないよ

Last updated at Posted at 2014-07-17

備忘録です.
jQuery で dataTransfer を使おうと思ったけど見つからないよと言われたので調べた時のメモです.

サンプルコード

sample.js
$("#sample").on("dragover", function(e) {
  e.preventDefault();
})
.on("drop", function(e) {
  e.preventDefault();

  // ないよー
  e.dataTransfer.items[0].getAsString(function(url) {
    console.log(url);
  }, false);
});

原因

jQuery’s event system normalizes the event object according to W3C standards. The event object is guaranteed to be passed to the event handler. Most properties from the original event are copied over and normalized to the new event object.
... http://api.jquery.com/category/events/event-object/

ドキュメントの文章を読んで分かる通り,
jQueryで定義したイベントハンドラを通じて取得したイベントオブジェクトは,
元のイベントオブジェクトの持つプロパティのうち,「ほとんど」をコピーした新しいイベントオブジェクトになっています.
つまり,この「ほとんど」の中に dataTransfer が入っていないことが原因でした.

解決法

その1 jQueryのイベントオブジェクトのプロパティにdataTransferを追加しちゃう.
jQuery.event.props.push("dataTransfer");

その2 originalEventプロパティを使って呼び出す.
e.originalEvent.dataTransfer.うんたらかんたら

ひとこと

全部ドキュメントに書いてました,ちゃんと読みます.

11
13
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
11
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?