Table caption 屬性
Table 對(duì)象定義和用法
caption 屬性返回了表格的 caption 元素。
caption 元素定義了表格的標(biāo)題。
注意: <caption> 元素定義了一個(gè)表格標(biāo)題。<caption> 標(biāo)簽必須緊跟在 <table> 標(biāo)簽之后,每個(gè)表格僅能規(guī)定一個(gè) caption。通常,caption 會(huì)位于表格之上居中的位置。
語(yǔ)法
tableObject.caption
瀏覽器支持
所有主要瀏覽器都支持 caption 屬性
實(shí)例
實(shí)例
下面的例子可返回表格的 <caption> 元素的文本:
<html>
<head>
<script>
function displayResult()
{
alert(document.getElementById("myTable").caption.innerHTML);
}
</script>
</head>
<body>
<table id="myTable" border="1">
<caption>This is a table caption</caption>
? <tr>
??? <td>cell 1</td>
??? <td>cell 2</td>
? </tr>
? <tr>
??? <td>cell 3</td>
??? <td>cell 4</td>
? </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Alert table caption</button>
</body>
</html>
<head>
<script>
function displayResult()
{
alert(document.getElementById("myTable").caption.innerHTML);
}
</script>
</head>
<body>
<table id="myTable" border="1">
<caption>This is a table caption</caption>
? <tr>
??? <td>cell 1</td>
??? <td>cell 2</td>
? </tr>
? <tr>
??? <td>cell 3</td>
??? <td>cell 4</td>
? </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Alert table caption</button>
</body>
</html>
嘗試一下 ?
Table 對(duì)象
更多建議: