Table tFoot属性用于返回对表的<tfoot>元素的引用。 <tfoot>元素用于对HTML表中的页脚内容进行分组。如果未定义<tfoot>元素,则返回NULL。
用法
tableObject.tFoot
以下示例程序旨在说明表TFoot()属性:
例:提醒innerHTML <tfoot>元素。
<!DOCTYPE html>
<html>
<head>
<title>Table tFoot Property in HTML
</title>
<style>
table,
td {
border:1px solid green;
}
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>Table tFoot Property</h2>
<p>To return the innerHTML of the tfoot
element for the table, double-click the
"Return Footer" button.</p>
<table id="Courses" align="center">
<thead>
<tr>
<th>Subject</th>
<th>Courses</th>
</tr>
</thead>
<tr>
<td>Java</td>
<td>Fork Java</td>
</tr>
<tr>
<td>Python</td>
<td>Fork Python</td>
</tr>
<tr>
<td>Placements</td>
<td>Sudo Placement</td>
</tr>
<tfoot>
<tr>
<td>Sample</td>
<td>Footer</td>
</tr>
</tfoot>
</table>
<br>
<button ondblclick="tfoot()">
Return Footer
</button>
<script>
function tfoot() {
// returning reference of tFoot
// using alert
alert(document.getElementById(
"Courses").tFoot.innerHTML);
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:
- 苹果Safari
- IE浏览器
- Firefox
- 谷歌浏览器
- Opera
相关用法
- HTML Table caption用法及代码示例
- HTML Table width用法及代码示例
- HTML Table tHead用法及代码示例
- HTML tfoot用法及代码示例
- HTML <tfoot> bgcolor属性用法及代码示例
- HTML <tfoot> valign属性用法及代码示例
- HTML <tfoot> align属性用法及代码示例
- CSS table-layout用法及代码示例
- HTML DOM Table用法及代码示例
- HTML DOM Table deleteCaption()用法及代码示例
- HTML DOM Table deleteTHead()用法及代码示例
- HTML DOM Table createTHead()用法及代码示例
- HTML DOM Table deleteTFoot()用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Table tFoot Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。