blob: e72d401794719c819dc275d1e46a28ae0faefea1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
---
title: Notification.badge
slug: Web/API/Notification/badge
tags:
- API
- Notification
- Notifications
- Notifications API
- Property
- Reference
- badge
- プロパティ
- 通知
translation_of: Web/API/Notification/badge
---
<p>{{APIRef("Web Notifications")}}{{AvailableInWorkers}}{{securecontext_header}}</p>
<p><strong><code>badge</code></strong> は {{domxref("Notification")}} インターフェイスのプロパティで、通知自体を表示する空間が充分にない場合に通知を表す画像の URL を返します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate">var <var>url</var> = <var>Notification</var>.badge</pre>
<h3 id="Value" name="Value">値</h3>
<p>URL が入った {{domxref('USVString')}} です。</p>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
<tr>
<td>{{SpecName('Web Notifications','#dom-notification-badge','badge')}}</td>
<td>{{Spec2('Web Notifications')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.Notification.badge")}}</p>
|