tableObject.deleteCaption()は、表(table要素)のタイトル(caption要素)を削除するメソッド。
構文
$tableElementReference.deleteCaption();
戻り値
なし。
例
$tableElementReference.deleteCaption(); // 表のタイトル(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" );
$sampleTable.deleteCaption();
}
</script>
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" );
$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>
<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>
#sample tr,
#sample td {
background-color: inherit;
}
</style>