blob: 3e572d1e61d69dfe7593b776cfdc385b9b639138 (
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
|
---
title: element.oncut
slug: Web/API/HTMLElement/oncut
tags:
- DOM
- Gecko
- Gecko DOM Reference
translation_of: Web/API/HTMLElement/oncut
---
<p> </p>
<p>{{ ApiRef() }} {{ 英語版章題("Summary") }}</p>
<h3 id=".E6.A6.82.E8.A6.81" name=".E6.A6.82.E8.A6.81">概要</h3>
<p><b>oncut</b> プロパティは、現在の要素での onCut イベントハンドラのコードを返します。</p>
<p>{{ 英語版章題("Syntax") }}</p>
<h3 id=".E6.A7.8B.E6.96.87" name=".E6.A7.8B.E6.96.87">構文</h3>
<pre class="eval"><i>element</i>.oncut =<i>functionRef</i>;
</pre>
<p>ここでの
<i>
functionRef</i>
は、関数です。それは、たいてい、他の場所で宣言された関数の名前、あるいは、
<i>
function 式</i>
です。<a href="ja/Core_JavaScript_1.5_Reference/Functions">Core JavaScript 1.5 Reference:Functions</a> を参照してください。</p>
<p>{{ 英語版章題("Example") }}</p>
<h3 id=".E4.BE.8B" name=".E4.BE.8B">例</h3>
<pre><html>
<head>
<title>oncut event example</title>
<script>
function log(txt)
{
document.getElementById("log").appendChild(document.createTextNode(txt + "\n"));
}
</script>
</head>
<body>
<h3>Play with this editor!</h3>
<textarea rows="3" cols="80" oncopy="log('Copied!');" oncut="log('Cut blocked!'); return false;">
Try copying and cutting the text in this area!
</textarea>
<h3>Log</h3>
<textarea rows="15" cols="80" id="log" readonly="true"></textarea>
</body>
</html>
</pre>
<p>この例では、テキストエリアからテキストをコピーすることはできますが、切り取ることはできません。また、コピーと切り取りの試みのログを表示します。</p>
<p>{{ 英語版章題("Notes") }}</p>
<h3 id=".E6.B3.A8.E8.A8.98" name=".E6.B3.A8.E8.A8.98">注記</h3>
<p>このイベントは、ユーザがテキストを切り取ろうとしたときに発生します。</p>
<p>{{ 英語版章題("Specification") }}</p>
<h3 id=".E4.BB.95.E6.A7.98" name=".E4.BB.95.E6.A7.98">仕様</h3>
<p>仕様の一部ではありません。</p>
<p>{{ 英語版章題("See also") }}</p>
<h3 id=".E5.8F.82.E7.85.A7" name=".E5.8F.82.E7.85.A7">参照</h3>
<ul>
<li><code><a href="ja/DOM/element.oncopy">oncopy</a></code></li>
<li><code><a href="ja/DOM/element.onpaste">onpaste</a></code></li>
</ul>
<div class="noinclude">
</div>
<p>{{ languages( { "en": "en/DOM/element.oncut" } ) }}</p>
|