HTMLTableCellElement:scope 属性
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
HTMLTableCellElement
接口的 scope
属性指示 <th>
单元格的范围。
使用 scope
属性对表头单元格进行配置,以应用于指定的行或者列,或者应用于当前行组(即相同的祖先 <thead>
、<tbody>
或 <tfoot>
元素)内尚未指定范围的单元格。如果未为 scope
指定值,则表头不会以这种方式与单元格相关联。scope
的允许值有:
备注:此属性在浏览器中不具有视觉效果。它添加语义信息以辅助技术(像屏幕阅读器)以更连贯的方式呈现表格。
值
示例
此示例为 tbody
第一行的所有单元格编号添加标签。
HTML
html
<table>
<caption>
最高的大坝
</caption>
<tr>
<td></td>
<th scope="col">大坝</th>
<th scope="col">国家</th>
<th scope="col">高度</th>
</tr>
<tr>
<td>1.</td>
<th scope="row">锦屏一级水电站</th>
<td>中国</td>
<td>305 m</td>
</tr>
<tr>
<td>2.</td>
<th scope="row">努列克坝</th>
<td>塔吉克斯坦</td>
<td>300 m</td>
</tr>
<tr>
<td>3.</td>
<th scope="row">两河口水电站</th>
<td>中国</td>
<td>295 m</td>
</tr>
<tr>
<td>4.</td>
<th scope="row">小湾水电站</th>
<td>中国</td>
<td>292 m</td>
</tr>
<tr>
<td>5.</td>
<th scope="row">白鹤滩水电站</th>
<td>中国</td>
<td>289 m</td>
</tr>
<tr>
<td>6.</td>
<th scope="row">溪洛渡水电站</th>
<td>中国</td>
<td>285.5 m</td>
</tr>
<tr>
<td>7.</td>
<th scope="row">大迪克桑斯坝</th>
<td>瑞士</td>
<td>285 m</td>
</tr>
</table>
结果
规范
Specification |
---|
HTML Standard # dom-th-scope |
浏览器兼容性
BCD tables only load in the browser