最終更新:2015-07-06 (月) 17:01:12 (3214d)  

event.originalEvent
Top / event.originalEvent

jQueryで追加されるメンバ

http://api.jquery.com/category/events/event-object/

Certain events may have properties specific to them. Those can be accessed as properties of the event.originalEvent object. To make special properties available in all event objects, they can be added to the jQuery.event.props? array. This is not recommended, since it adds overhead to every event delivered by jQuery.

Example:

  // add the dataTransfer property for use with the native `drop` event
  // to capture information about files dropped into the browser window
  jQuery.event.props.push("dataTransfer");

メモ

  • jQueryでイベントをバインドした場合、touches は event.originalEvent.touches で取得しなければならない、

関連