diff options
Diffstat (limited to 'files/ja/web/api/client/url/index.html')
-rw-r--r-- | files/ja/web/api/client/url/index.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/files/ja/web/api/client/url/index.html b/files/ja/web/api/client/url/index.html new file mode 100644 index 0000000000..91a3e30068 --- /dev/null +++ b/files/ja/web/api/client/url/index.html @@ -0,0 +1,69 @@ +--- +title: Client.url +slug: Web/API/Client/url +tags: + - API + - Client + - Property + - Reference + - Service Workers + - URL +translation_of: Web/API/Client/url +--- +<div>{{APIRef("Service Workers API")}}</div> + +<p><span class="seoSummary">{{domxref("Client")}} インターフェイスの <strong><code>url</code></strong> 読み取り専用プロパティは、現在のサービスワーカークライアントの URL を返します。</span></p> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="syntaxbox">var <em>clientUrl</em> = <em>client</em>.url;</pre> + +<h3 id="Value" name="Value">値</h3> + +<p>{{domxref("USVString")}}。</p> + +<h2 id="Example" name="Example">例</h2> + +<pre class="brush: js">self.addEventListener('notificationclick', function(event) { + console.log('On notification click: ', event.notification.tag); + event.notification.close(); + + // これは、クライアントが既に開いているかどうかを確認し、 + // 開いている場合にフォーカスを合わせます + event.waitUntil(clients.matchAll({ + type: 'window' + }).then(function(clientList) { + for (var i = 0; i < clientList.length; i++) { + var client = clientList[i]; + if (client.url == '/' && 'focus' in client) + return client.focus(); + } + if (clients.openWindow) + return clients.openWindow('/'); + })); +});</pre> + +<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('Service Workers', '#client-url', 'url')}}</td> + <td>{{Spec2('Service Workers')}}</td> + <td>初期定義</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div> + + +<p>{{Compat("api.Client.url")}}</p> +</div> |