aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/title/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/document/title/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/document/title/index.html')
-rw-r--r--files/ja/web/api/document/title/index.html80
1 files changed, 80 insertions, 0 deletions
diff --git a/files/ja/web/api/document/title/index.html b/files/ja/web/api/document/title/index.html
new file mode 100644
index 0000000000..e4daa979fd
--- /dev/null
+++ b/files/ja/web/api/document/title/index.html
@@ -0,0 +1,80 @@
+---
+title: Document.title
+slug: Web/API/Document/title
+tags:
+ - API
+ - Command API
+ - Document
+ - HTML DOM
+ - NeedsSpecTable
+ - Property
+ - Reference
+translation_of: Web/API/Document/title
+---
+<div>{{APIRef("DOM")}}</div>
+
+<p><span class="seoSummary"><strong><code>document.title</code></strong> プロパティは、現在の文書の<a href="/ja/docs/Web/HTML/Element/title">題名</a>を取得または設定します。</span></p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">var <var>docTitle</var> = <var>document</var>.title;
+</pre>
+
+<p><var>docTitle</var> は <var>document</var> の題名を含む文字列です。題名が <code>document.title</code> に設定することで上書きされている場合は、その値を含みます。そうでなければ、マークアップの中で指定された題名を含みます (下記の{{Anch("Notes", "メモ")}}を参照)。</p>
+
+<pre class="syntaxbox notranslate"><var>document</var>.title = <var>newTitle</var>;
+</pre>
+
+<p><code><var>newTitle</var></code> は文書の新しい題名です。代入すると、 <code>document.title</code> の返値、文書に表示される題名 (ウィンドウのタイトルバーやタブなど)、文書の DOM (HTML 文書の <code>&lt;title&gt;</code> 要素の内容など) にも反映されます。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush:js notranslate">&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+ &lt;title&gt;Hello World!&lt;/title&gt;
+&lt;/head&gt;
+&lt;body&gt;
+
+ &lt;script&gt;
+ alert(document.title); // "Hello World!" と表示
+ document.title = "Goodbye World!";
+ alert(document.title); // "Goodbye World!" と表示
+ &lt;/script&gt;
+
+&lt;/body&gt;
+&lt;/html&gt;
+</pre>
+
+<h2 id="Notes" name="Notes">注</h2>
+
+<p>Gecko では、このプロパティは HTML, SVG, XUL, その他の文書に適用されます。</p>
+
+<p>HTML 文書では、 <code>document.title</code> の初期値は <code>&lt;title&gt;</code> 要素のテキストの内容です。 XUL では、 {{XULElem("window")}} またはその他の最上位 XUL 要素の {{XULAttr("title")}} 属性の値です。</p>
+
+<p>XUL では、文書の読み込みが完了する前に <code>document.title</code> にアクセスした時の動作は未定義です。 <code>document.title</code> が空文字を返す場合があり、また <code>document.title</code> を設定しても効果が表れないかもしれません。</p>
+
+<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','#document.title','document.title')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</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.title")}}</p>