Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

element.onpaste

非標準
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

概要

onpaste プロパティは、r現在の要素での onPaste イベントハンドラのコードを返します。

構文

element.onpaste = functionRef;

ここでの functionRef は関数です。それはたいてい、他の場所で宣言された関数の名前、あるいは function 式です。詳しくは JavaScript リファレンス:Functions を参照してください。

<!DOCTYPE html>
<html>
<head>
<title>onpaste event example</title>
</head>

<body>
<h1>Play with this editor!</h1>
<textarea id="editor" rows="3" cols="80">
Try pasting text into this area!
</textarea>

<script>
function log(txt) {
  document.getElementById("log").appendChild(document.createTextNode(txt + "\n"));
}
  
function pasteIntercept(evt) {
  log("Pasting!");
}
  
document.getElementById("editor").addEventListener("paste", pasteIntercept, false);
</script>

<h2>Log</h2>
<textarea rows="15" cols="80" id="log" readonly="true"></textarea>
</body>
</html>

この例は、テキストエリアへの貼り付けのログを表示します。

注記

このイベントは、ユーザがテキストを貼り付けしようとしたときに発生します。

Firefox 13 から、この機能は設定 dom.event.clipboardevents.enabled で制御されます。デフォルトは true ですが無効化できます。

仕様

仕様の一部ではありません。

注記

現在、 DOM だけでペーストされたテキストを得る方法はありません。その情報を得るためには nsIClipboard を用いる必要があります。

参照

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: mitsuba-clover, fscholz, khalid32, Potappo
 最終更新者: mitsuba-clover,