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/htmltableelement/caption | |
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/htmltableelement/caption')
-rw-r--r-- | files/ja/web/api/htmltableelement/caption/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/files/ja/web/api/htmltableelement/caption/index.html b/files/ja/web/api/htmltableelement/caption/index.html new file mode 100644 index 0000000000..a473c59f83 --- /dev/null +++ b/files/ja/web/api/htmltableelement/caption/index.html @@ -0,0 +1,26 @@ +--- +title: HTMLTableElement.caption +slug: Web/API/HTMLTableElement/caption +tags: + - DOM + - Gecko + - Gecko DOM Reference +translation_of: Web/API/HTMLTableElement/caption +--- +<div> + {{ApiRef()}}</div> +<h2 id="Summary" name="Summary">概要</h2> +<p><code>caption</code> は、table 要素のキャプションを返します。</p> +<h2 id="Syntax" name="Syntax">構文</h2> +<pre class="syntaxbox"><i>string</i> = table.caption</pre> +<h3 id="Example" name="Example">例</h3> +<pre class="brush:js">if (table.caption) { + // do something with the caption +}</pre> +<h2 id="Notes" name="Notes">注記</h2> +<p>このプロパティは、対象テーブル内に {{HTMLelement("caption")}} 要素が存在しない場合、<code>void</code> を返します。</p> +<h2 id="Specification" name="Specification">仕様書</h2> +<ul> + <li><a href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-14594520">caption</a></li> + <li><a href="http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-12035137">Interface HTMLTableCaptionElement</a></li> +</ul> |