--- title: Notification.actions slug: Web/API/Notification/actions tags: - API - DOM - Notification - Notifications - Notifications API - Property - Reference - actions - プロパティ - 通知 translation_of: Web/API/Notification/actions ---

{{APIRef("Web Notifications")}}{{AvailableInWorkers}}{{securecontext_header}}

actions は {{domxref("Notification")}} インターフェイスの読取専用プロパティで、 {{domxref("Notification.Notification","Notification()")}} コンストラクターの actions オプションで指定された {{domxref("NotificationAction")}} オブジェクトのリストを返します。これは、通知のコンテキストでユーザーが直接選択することができる、アプリケーション定義のアクションのリストです。

注: 端末やユーザーエージェントによっては、 (例えば、画面の空間の制約により) 限られた数のアクションしか表示できないことがあります。この制限は {{DOMxRef("Notification.maxActions")}} で推測することができます。

構文

var actions[] = Notification.actions;

{{domxref("NotificationAction")}} オブジェクトの読取専用の配列で、それぞれの要素が通知の中でユーザーが選択することができる単一のアクションを記述したものです。

仕様書

仕様書 状態 備考
{{SpecName('Web Notifications','#dom-notification-actions','actions')}} {{Spec2('Web Notifications')}} Living standard

ブラウザーの互換性

{{Compat("api.Notification.actions")}}

関連情報