Skip to content

Commit

Permalink
2023/04/07 時点の英語版に同期
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Jul 27, 2023
1 parent 48bc9e2 commit 8e7fc1e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion files/ja/web/api/clipboardevent/clipboarddata/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
title: ClipboardEvent.clipboardData
title: "ClipboardEvent: clipboardData プロパティ"
short-title: clipboardData
slug: Web/API/ClipboardEvent/clipboardData
l10n:
sourceCommit: d76defab4ca13261e9de81ae1df125345f847b0a
---

{{APIRef("Clipboard API")}}
Expand Down
11 changes: 7 additions & 4 deletions files/ja/web/api/clipboardevent/clipboardevent/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
title: ClipboardEvent()
title: "ClipboardEvent: ClipboardEvent() コンストラクター"
short-title: ClipboardEvent()
slug: Web/API/ClipboardEvent/ClipboardEvent
l10n:
sourceCommit: d76defab4ca13261e9de81ae1df125345f847b0a
---

{{APIRef("Clipboard API")}}
Expand All @@ -9,21 +12,21 @@ slug: Web/API/ClipboardEvent/ClipboardEvent

## 構文

```js
```js-nolint
new ClipboardEvent(type)
new ClipboardEvent(type, options)
```

### 引数

- `type`
- : 文字列で、 `ClipboardEvent` の型を表します。これは `copy`, `cut`, `paste` の何れかで、大文字小文字を区別します。
- : 文字列で、`ClipboardEvent` の型を表します。これは `copy`, `cut`, `paste` の何れかで、大文字小文字を区別します。
- `options` {{optional_inline}}
- : {{domxref("Event/Event", "Event()")}} で定義されるプロパティに加えて、以下のプロパティを持つオブジェクトです。
- `clipboardData` {{optional_inline}}
- : {{domxref("DataTransfer")}} で、このクリックボードイベントに関連付けられたものです。既定値は `null` です。
- `dataType` {{non-standard_inline}} {{optional_inline}}
- : 文字列で、 `data` 引数に含まれるデータの MIME タイプを指定します。既定値は `""` です。
- : 文字列で、`data` 引数に含まれるデータの MIME タイプを指定します。既定値は `""` です。
- `data` {{non-standard_inline}} {{optional_inline}}
- : 文字列で、このクリップボードイベントに関連付けられたデータです。既定値は `""` です。

Expand Down

0 comments on commit 8e7fc1e

Please sign in to comment.