tableObject.createCaption()メソッド

tableObject.createCaption()は、表(table要素)のタイトル(caption要素)を作成するメソッド。

構文

$tableElementReference.createCaption();

戻り値

作成したタイトル(caption要素)。

var $createdCaption = $tableElementReference.createCaption(); // 表のタイトル(caption要素)を作成
$createdCaption.innerHTML = "タイトル"; // 作成したタイトル(caption要素)の内容を指定

サンプル

1行目1列目 1行目2列目 1行目3列目
2行目1列目 2行目2列目 2行目3列目
3行目1列目 3行目2列目 3行目3列目

サンプルの動作について

  • 「作成」ボタンをクリックすると、表のタイトル(caption要素)を作成する。
  • 「削除」ボタンをクリックすると、表のタイトル(caption要素)を削除する。

サンプルのソースコード

JavaScript

<script type="text/javascript">
var $sampleCount = 0;
function sampleCreateCaption(){
    $sampleCount++;
    var $sampleTable = document.getElementById( "sample" );
    var $createdCaption = $sampleTable.createCaption();
    $createdCaption.innerHTML = "タイトル" + $sampleCount;
}
function sampleDeleteCaption(){
    var $sampleTable = document.getElementById( "sample" );
    var $deletedCaption = $sampleTable.deleteCaption();
}
</script>

HTML

<p>
    <button onclick="sampleCreateCaption()">作成</button>
    <button onclick="sampleDeleteCaption()">削除</button>
</p>
<table id="sample">
    <tr>
        <td>1行目1列目</td>
        <td>1行目2列目</td>
        <td>1行目3列目</td>
    </tr>
    <tr>
        <td>2行目1列目</td>
        <td>2行目2列目</td>
        <td>2行目3列目</td>
    </tr>
    <tr>
        <td>3行目1列目</td>
        <td>3行目2列目</td>
        <td>3行目3列目</td>
    </tr>
</table>

CSS

<style>
#sample tr,
#sample td {
    background-color: inherit;
}
</style>

スポンサード リンク

カテゴリー: DOM, JavaScript, Tableオブジェクト, リファレンス パーマリンク