Window: afterprint イベント

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2019.

afterprint イベントは、関連する文書の印刷が開始されたか、印刷プレビューが閉じた後に発生します。

バブリング いいえ
キャンセル 不可
インターフェイス Event
イベントハンドラープロパティ onafterprint

addEventListener() の使用例:

js
window.addEventListener("afterprint", (event) => {
  console.log("After print");
});

onafterprint イベントハンドラープロパティの使用例:

js
window.onafterprint = (event) => {
  console.log("After print");
};

仕様書

Specification
HTML Standard
# event-afterprint
HTML Standard
# handler-window-onafterprint

ブラウザーの互換性

BCD tables only load in the browser

関連情報