--- title: 'Window: cut イベント' slug: Web/API/Window/cut_event tags: - API - Clippboard API - Cut - Event - Reference - Web - Window - イベント translation_of: Web/API/Window/cut_event ---
{{APIRef}}

cut イベントは、ユーザーがブラウザーのユーザーインターフェイスから切り取り操作を実行したときに発生します。

バブリング あり
キャンセル
インターフェイス {{domxref("ClipboardEvent")}}
イベントハンドラープロパティ {{domxref("HTMLElement/oncut", "oncut")}}

このイベントの本来の対象は、切り取り操作の意図の対象である {{domxref("Element")}} です。このイベントを {{domxref("Window")}} インターフェイス上で待ち受けし、キャプチャやバブリングの局面で処理することができます。このイベントの局面について完全な詳細は、 Element: cut イベントを参照してください。

window.addEventListener('cut', (event) => {
    console.log('cut action initiated')
});

仕様書

仕様書 状態
{{SpecName('Clipboard API', '#clipboard-event-cut')}} {{Spec2('Clipboard API')}}

ブラウザーの互換性

{{Compat("api.Window.cut_event")}}

関連情報