codecamp

HTML table summary 属性

HTML <table> summary 属性

HTML table 标签参考手册 HTML <table> 标签

实例

下面的 HTML 表格定义了表格内容的摘要:

<table border="1" summary="Monthly savings for the Flintstones family">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>

尝试一下 »

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

summary 属性在普通的 Web 浏览器中没有视觉效果,但可以通过屏幕阅读器使用。


定义和用法

HTML5 不支持 <table> summary 属性。

summary 属性规定表格内容的摘要。


语法

<table summary="text">

属性值

描述
text 表格内容的摘要。


HTML table 标签参考手册 HTML <table> 标签
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML标签

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }