HTML DOM Table summary 屬性

2018-08-04 20:41 更新

Table summary 屬性

Table 對(duì)象參考手冊(cè) Table 對(duì)象

定義和用法

summary 屬性可設(shè)置或返回表格的概述。

summary 屬性可設(shè)置或返回表格的概述。

語法

設(shè)置 summary 屬性:

tableObject.summary="text"

返回 summary 屬性:

tableObject.summary

提示: summary 屬性沒有默認(rèn)值。

描述
text 摘要文本


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 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>

嘗試一下 ?


Table 對(duì)象參考手冊(cè) Table 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)