--- title: Notification.renotify slug: Web/API/Notification/renotify tags: - API - Experimental - Notifications - Property - Reference - renotify - プロパティ - 通知 translation_of: Web/API/Notification/renotify ---
{{APIRef("Web Notifications")}}{{AvailableInWorkers}}{{securecontext_header}}
renotify
は {{domxref("Notification")}} インターフェイスの読取専用プロパティで、 {{domxref("Notification.Notification","Notification()")}} コンストラクターの renotify
オプションで指定され、新しい通知が古い通知を置き換えたときにユーザーに通知されるかどうかを指定します。
var renotify = Notification.renotify;
{{domxref("Boolean")}} です。 false
が既定値です。 true
で通知を静かに行います。
次のスニペットは静かな通知を発行するためのものです。単純な options
オブジェクトが生成され、通知が Notification()
コンストラクターを使用して発行されます。
var options = { body: 'Do you like my body?', renotify: true } var n = new Notification('Test notification',options); console.log(n.renotify) // should log true
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName('Web Notifications','#dom-notification-renotify','renotify')}} | {{Spec2('Web Notifications')}} | Living standard |
{{Compat("api.Notification.renotify")}}