diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/datatransferitemlist/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/datatransferitemlist/index.html')
-rw-r--r-- | files/ja/web/api/datatransferitemlist/index.html | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/files/ja/web/api/datatransferitemlist/index.html b/files/ja/web/api/datatransferitemlist/index.html new file mode 100644 index 0000000000..584201eb0c --- /dev/null +++ b/files/ja/web/api/datatransferitemlist/index.html @@ -0,0 +1,78 @@ +--- +title: DataTransferItemList +slug: Web/API/DataTransferItemList +tags: + - API + - DataTransferItemList + - HTML DOM + - HTML Drag and Drop API + - Interface + - NeedsTranslation + - Reference + - TopicStub + - drag and drop +translation_of: Web/API/DataTransferItemList +--- +<div>{{APIRef("HTML Drag and Drop API")}}</div> + +<p>The <code><strong>DataTransferItemList</strong></code> object is a list of {{domxref("DataTransferItem")}} objects representing items being dragged. During a <em>drag operation</em>, each {{domxref("DragEvent")}} has a {{domxref("DragEvent.dataTransfer","dataTransfer")}} property and that property is a <code>DataTransferItemList</code>.</p> + +<p>This interface has no constructor.</p> + +<h2 id="Properties">Properties</h2> + +<dl> + <dt>{{domxref("DataTransferItemList.length")}} {{readonlyInline}}</dt> + <dd>An <code>unsigned long</code> that is the number of drag items in the list.</dd> +</dl> + +<h2 id="Methods">Methods</h2> + +<dl> + <dt>{{domxref("DataTransferItemList.add()")}}</dt> + <dd>Adds an item (either a {{domxref("File")}} object or a {{domxref("DOMString","string")}}) to the drag item list and returns a {{domxref("DataTransferItem")}} object for the new item.</dd> + <dt>{{domxref("DataTransferItemList.remove()")}}</dt> + <dd>Removes the drag item from the list at the given index.</dd> + <dt>{{domxref("DataTransferItemList.clear()")}}</dt> + <dd>Removes all of the drag items from the list.</dd> + <dt>{{domxref("DataTransferItemList.DataTransferItem()")}}</dt> + <dd>Getter that returns a {{domxref("DataTransferItem")}} at the given index.</dd> +</dl> + +<h2 id="Example">Example</h2> + +<p>Each of this interface's methods and properties has a reference page, and each reference page has an example of its usage.</p> + +<h2 id="Specifications">Specifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG', 'interaction.html#datatransferitemlist','DataTransferItemList')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td> </td> + </tr> + <tr> + <td>{{SpecName('HTML5.1', 'editing.html#datatransferitemlist','DataTransferItemList')}}</td> + <td>{{Spec2('HTML5.1')}}</td> + <td>Not included in W3C HTML5 {{Spec2('HTML5 W3C')}}</td> + </tr> + <tr> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">Browser compatibility</h2> + +<p> </p> + + + +<p>{{Compat("api.DataTransferItemList")}}</p> + +<p> </p> |