Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. DataTransfer

DataTransfer

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨July 2015⁩.

TheDataTransfer object is used to hold any data transferred between contexts, such as a drag and drop operation, or clipboard read/write. It may hold one or more data items, each of one or more data types.

DataTransfer was primarily designed for theHTML Drag and Drop API, as theDragEvent.dataTransfer property, and is still specified in the HTML drag-and-drop section, but it is now also used by other APIs, such asClipboardEvent.clipboardData andInputEvent.dataTransfer. However, other APIs only use certain parts of its interface, ignoring properties such asdropEffect. Documentation ofDataTransfer will primarily discuss its usage in drag-and-drop operations, and you should refer to the other APIs' documentation for usage ofDataTransfer in those contexts.

Constructor

DataTransfer()

Creates and returns a newDataTransfer object.

Instance properties

DataTransfer.dropEffect

Gets the type of drag-and-drop operation currently selected or sets the operation to a new type. The value must benone,copy,link ormove.

DataTransfer.effectAllowed

Provides all of the types of operations that are possible. Must be one ofnone,copy,copyLink,copyMove,link,linkMove,move,all oruninitialized.

DataTransfer.filesRead only

Contains a list of all the local files available on the data transfer. If the drag operation doesn't involve dragging files, this property is an empty list.

DataTransfer.itemsRead only

Gives aDataTransferItemList object which is a list of all of the drag data.

DataTransfer.typesRead only

An array of strings giving the formats that were set in thedragstart event.

Instance methods

DataTransfer.addElement()ExperimentalNon-standard

Sets the drag source for the given element. This will be the element on whichdrag anddragend events are fired, and not the default target (the node that was dragged). Firefox-specific.

DataTransfer.clearData()

Remove the data associated with a given type. The type argument is optional. If the type is empty or not specified, the data associated with all types is removed. If data for the specified type does not exist, or the data transfer contains no data, this method will have no effect.

DataTransfer.getData()

Retrieves the data for a given type, or an empty string if data for that type does not exist or the data transfer contains no data.

DataTransfer.setData()

Set the data for a given type. If data for the type does not exist, it is added at the end, such that the last item in the types list will be the new format. If data for the type already exists, the existing data is replaced in the same position.

DataTransfer.setDragImage()

Set the image to be used for dragging if a custom one is desired.

Examples

Every method and property listed in this document has its own reference page and each reference page either directly includes an example of the interface or has a link to an example.

Reading the data in a paste or drop event

In the following example, we have a<form> containing three different types of text inputs: a text<input> element, a<textarea> element, and a<div> element withcontenteditable set totrue. The user can paste or drop text into any of these elements, and the data in theClipboardEvent.clipboardData orDragEvent.dataTransfer object will be displayed.

HTML

html
<form>  <fieldset>    <legend>&lt;input /></legend>    <input type="text" />    <table>      <tbody>        <tr>          <th scope="row">Operation type</th>          <td></td>        </tr>        <tr>          <th scope="row">Content type</th>          <td></td>        </tr>      </tbody>    </table>  </fieldset>  <fieldset>    <legend>&lt;textarea /></legend>    <textarea></textarea>    <table>      <tbody>        <tr>          <th scope="row">Operation type</th>          <td></td>        </tr>        <tr>          <th scope="row">Content type</th>          <td></td>        </tr>      </tbody>    </table>  </fieldset>  <fieldset>    <legend>&lt;div contenteditable /></legend>    <div contenteditable></div>    <table>      <tbody>        <tr>          <th scope="row">Operation type</th>          <td></td>        </tr>        <tr>          <th scope="row">Content type</th>          <td></td>        </tr>      </tbody>    </table>  </fieldset>  <p>    <input type="reset" />  </p></form>

CSS

css
.center {  text-align: center;}form > fieldset > * {  vertical-align: top;}form input,form textarea,form [contenteditable] {  min-width: 15rem;  padding: 0.25rem;}[contenteditable] {  appearance: textfield;  display: inline-block;  min-height: 1rem;  border: 1px solid;}form table {  display: inline-table;}table ol {  text-align: left;}

JavaScript

js
const form = document.querySelector("form");function displayData(event) {  if (event.type === "drop") event.preventDefault();  const cells = event.target.nextElementSibling.querySelectorAll("td");  cells[0].textContent = event.type;  const transfer = event.clipboardData || event.dataTransfer;  const ol = document.createElement("ol");  cells[1].textContent = "";  cells[1].appendChild(ol);  for (const item of transfer.items) {    const li = document.createElement("li");    li.textContent = `${item.kind} ${item.type}`;    ol.appendChild(li);  }}form.addEventListener("paste", displayData);form.addEventListener("drop", displayData);form.addEventListener("reset", () => {  for (const cell of form.querySelectorAll("[contenteditable], td")) {    cell.textContent = "";  }});

Result

Specifications

Specification
HTML
# the-datatransfer-interface

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp