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);