DragEvent()

This constructor is used to create a synthetic DragEvent object.

Although this interface has a constructor, it is not possible to create a useful DataTransfer object from script, since DataTransfer objects have a processing and security model that is coordinated by the browser during drag-and-drops.

该接口继承了 MouseEvent 和 Event 的属性。

语法

 event = new DragEvent(type, DragEventInit);

参数

type
Is a DOMString representing the name of the event (see DragEvent event types).
DragEventInit可选
Is a DragEventInit dictionary, having the following fields:
  • "dataTransfer", optional and defaults to "null". The type is DataTransfer.

The DragEventInit dictionary inherits from the MouseEventInit dictionary.

标准

Specification Status Comment
WHATWG HTML Living Standard
DragEvent
Living Standard  
HTML5.1
DragEvent
Working Draft Initial definition

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 4 3.5 (1.9.1) 10 12 3.1
Feature Android Android Webview Chrome for Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile
Basic support 未实现 未实现 未实现 未实现 未实现 10 未实现 未实现

文档标签和贡献者