Table summary 屬性
Table 對(duì)象定義和用法
summary 屬性可設(shè)置或返回表格的概述。
summary 屬性可設(shè)置或返回表格的概述。
語法
設(shè)置 summary 屬性:
tableObject.summary="text"
返回 summary 屬性:
tableObject.summary
提示: summary 屬性沒有默認(rèn)值。
值 | 描述 |
---|---|
text | 摘要文本 |
瀏覽器支持
所有主要瀏覽器都支持 summary 屬性
實(shí)例
實(shí)例
彈出表格的摘要:
<html>
<head>
<script>
function displayResult()
{
alert(document.getElementById('myTable').summary);
}
</script>
</head>
<body>
<table id="myTable" border="1" summary="實(shí)例 table of employees">
? <tr>
??? <th>Firstname</th>
??? <th>Lastname</th>
? </tr>
? <tr>
??? <td>Peter</td>
??? <td>Griffin</td>
? </tr>
? <tr>
??? <td>John</td>
??? <td>Doe</td>
? </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Show table summary</button>
</body>
</html>
<head>
<script>
function displayResult()
{
alert(document.getElementById('myTable').summary);
}
</script>
</head>
<body>
<table id="myTable" border="1" summary="實(shí)例 table of employees">
? <tr>
??? <th>Firstname</th>
??? <th>Lastname</th>
? </tr>
? <tr>
??? <td>Peter</td>
??? <td>Griffin</td>
? </tr>
? <tr>
??? <td>John</td>
??? <td>Doe</td>
? </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Show table summary</button>
</body>
</html>
嘗試一下 ?
Table 對(duì)象
更多建議: