blob: 52f3c816f6967635daddb28cdd73621800217726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
---
title: HTMLElement.oncopy
slug: Web/API/HTMLElement/oncopy
tags:
- API
- Event Handler
- Experimental
- HTMLElement
- NeedsSpecTable
- Property
- Reference
translation_of: Web/API/HTMLElement/oncopy
---
<div>{{ APIRef("HTML DOM") }}{{SeeCompatTable}} {{ Fx_minversion_header(3) }}</div>
<p><strong><code>oncopy</code></strong> プロパティは {{domxref("HTMLElement")}} インターフェイスのプロパティで、 {{domxref("Element/copy_event", "copy")}} イベントを処理するイベントハンドラー ({{domxref("EventHandler")}}) です。</p>
<p><code>copy</code> イベントはユーザーがテキストをコピーしようとしたときに発生します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><var>target</var>.oncopy = <var>functionRef</var>;</pre>
<h3 id="Value" name="Value">値</h3>
<p><code><var>functionRef</var></code> は関数名または<a href="/ja/docs/Web/JavaScript/Reference/Operators/function">関数式</a>です。この関数は {{domxref("ClipboardEvent")}} オブジェクトを唯一の引数として受け取ります。</p>
<h2 id="Example" name="Example">例</h2>
<p>この例では、 {{htmlElement("textarea")}} からのすべてのコピーと貼り付けをブロックします。</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><h3>Play with this text area:</h3>
<textarea id="editor" rows="3">Try copying and pasting text into this field!</textarea>
<h3>Log:</h3>
<p id="log"></p></pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js notranslate">const log = document.getElementById('log');
function logCopy(event) {
log.innerText = 'Copy blocked!\n' + log.innerText;
event.preventDefault();
}
function logPaste(event) {
log.innerText = 'Paste blocked!\n' + log.innerText;
event.preventDefault();
}
const editor = document.getElementById('editor');
editor.oncopy = logCopy;
editor.onpaste = logPaste;</pre>
<h3 id="Result" name="Result">結果</h3>
<p>{{EmbedLiveSample("Example", 700, 300)}}</p>
<h2 id="Specification" name="Specification">仕様書</h2>
<p><a href="https://html.spec.whatwg.org/multipage/webappapis.html#handler-oncopy">WHATWG Standard</a></p>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
<p>{{Compat("api.HTMLElement.oncopy")}}</p>
<p>Firefox 13 から、この機能は設定 <code>dom.event.clipboardevents.enabled</code> で制御されます。既定値は <code>true</code> ですが無効化できます。</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>Clipboard API のイベント {{domxref("Element/copy_event", "copy")}}</li>
<li>関連するイベントハンドラー
<ul>
<li>{{domxref("HTMLElement.oncut")}}</li>
<li>{{domxref("HTMLElement.onpaste")}}</li>
</ul>
</li>
</ul>
|