table要素にあるcaption要素を取得

table要素にあるcaption要素を取得するには、tableElement.captionプロパティを使用します。

構文

var captionElement = tableElement.caption;

戻り値

追加されたcaption要素を返します。

サンプルコード

JavaScript

// table要素を取得
var tableElem = document.getElementById('sample-table');

var capElem = tableElem.caption;

alert(capElem.outerHTML);

JavaScript逆引きリファレンス一覧へ戻る