diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/htmltimeelement/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/htmltimeelement/index.html')
-rw-r--r-- | files/ja/web/api/htmltimeelement/index.html | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/files/ja/web/api/htmltimeelement/index.html b/files/ja/web/api/htmltimeelement/index.html new file mode 100644 index 0000000000..194dcb061b --- /dev/null +++ b/files/ja/web/api/htmltimeelement/index.html @@ -0,0 +1,69 @@ +--- +title: HTMLTimeElement +slug: Web/API/HTMLTimeElement +tags: + - API + - HTML DOM + - Interface + - Reference +translation_of: Web/API/HTMLTimeElement +--- +<div>{{ APIRef("HTML DOM") }}</div> + +<p><strong><code>HTMLTimeElement</code></strong> インターフェイスは、 {{HTMLElement("time")}} 要素を操作するための特別なプロパティを提供します (通常の {{domxref("HTMLElement")}} インターフェイスに加え、継承によっても利用できます。) 。</p> + +<p>{{InheritanceDiagram(600, 120)}}</p> + +<h2 id="プロパティ">プロパティ</h2> + +<p><em>また、親である {{domxref("HTMLElement")}} からプロパティを継承します。</em></p> + +<dl> + <dt>{{domxref("HTMLTimeElement.dateTime")}}</dt> + <dd>{{ htmlattrxref("datetime", "time") }} HTML 属性を反映する {{domxref("DOMString")}} であり、機械で読み取り可能な形式の日付と時刻の値を含みます。</dd> +</dl> + +<h2 id="関数">関数</h2> + +<p><em>特定の関数無し; 親である {{domxref("HTMLElement")}} から関数を継承します。</em></p> + +<h2 id="仕様">仕様</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">仕様</th> + <th scope="col">ステータス</th> + <th scope="col">備考</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG', "#htmltimeelement", "HTMLTimeElement")}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td></td> + </tr> + <tr> + <td>{{SpecName('HTML5.1', "text-level-semantics.html#the-time-element", "HTMLTimeElement")}}</td> + <td>{{Spec2('HTML5.1')}}</td> + <td>{{SpecName("HTML5 W3C")}}. からの変更なし。</td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', "text-level-semantics.html#the-time-element", "HTMLTimeElement")}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td>初回定義。</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザーの互換性">ブラウザーの互換性</h2> + +<div> + + +<p>{{Compat("api.HTMLTimeElement")}}</p> +</div> + +<h2 id="関連項目">関連項目</h2> + +<ul> + <li>このインターフェイスを実装する HTML 要素: {{HTMLElement("time")}}.</li> +</ul> |