Latest web development tutorials

HTML DOM Table summary attribute

Table Object Reference Table Object

Definition and Usage

summary property sets or returns an overview of the table.

summary property sets or returns an overview of the table.

grammar

Set the summary attribute:

tableObject.summary="text"

Returns summary attributes:

tableObject.summary

Tip: summary property has no default value.

描述
text 摘要文本


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support summary attribute


Examples

Examples

Pop summary table:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<script>
function displayResult(){
    alert(document.getElementById('myTable').summary);
}
</script>
</head>
<body>

<table id="myTable" border="1" summary="例如表中的员工">
    <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()">显示表格描述</button>

</body>
</html>

try it"


Table Object Reference Table Object