aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/location/index.html
blob: 07129f1740b50860f7c2f91c06208ac563891430 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
title: Document.location
slug: Web/API/Document/location
tags:
  - API
  - Document
  - HTML DOM
  - Property
  - Read-only
  - Reference
  - プロパティ
translation_of: Web/API/Document/location
---
<p>{{APIRef("DOM")}}</p>

<p><strong><code>Document.location</code></strong> は読み取り専用のプロパティで、この文書の URL に関する情報を持った {{domxref("Location")}} オブジェクトを返します。これはその URL を変更したり他の URL を読み込んだりするためのメソッドも提供しています。</p>

<p><code>Document.location</code><em>読み取り専用</em><code>Location</code> オブジェクトですが、 {{domxref("DOMString")}} を代入することができます。つまり、 document.location が文字列であるかのように扱うことができます。 <code>document.location = 'http://www.example.com'</code><code>document.location.href = 'http://www.example.com'</code> の別名です。</p>

<p>URL を文字列として受け取るだけであれば、読み取り専用の {{domxref("document.URL")}} プロパティも利用することができます。</p>

<p>現在の文書が閲覧コンテキスト内にない場合、返値は <code>null</code> となります。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<p>s</p>

<pre class="syntaxbox notranslate"><var>locationObj</var> = document.location
document.location = 'http://www.mozilla.org' // Equivalent to document.location.href = 'http://www.mozilla.org'
</pre>

<h2 id="Example" name="Example"></h2>

<pre class="brush: js notranslate">console.log(document.location);
// Location オブジェクトをコンソールへ表示
</pre>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
   <th scope="col">備考</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('HTML WHATWG', "history.html#the-location-interface", "Document.location")}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>{{SpecName("HTML5 W3C")}} から変更なし</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', "browsers.html#the-location-interface", "Document.location")}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>

<p>{{Compat("api.Document.location")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>返値のインターフェイスである {{domxref("Location")}}</li>
 <li>同様の情報で{{Glossary("browsing context", "閲覧コンテキスト")}}に結びつけられている {{domxref("Window.location")}}</li>
</ul>