表createTFoot()方法用于创建空的<tfoot>元素并将其添加到表中。如果<tfoot>元素已经存在,则不会创建新的<tfoot>元素。在这种情况下,createTFoot()方法将返回现有的方法。 <tfoot>元素内部必须具有多个<tr>标记。
用法
tableObject.createTFoot()
以下示例程序旨在说明表createTFoot()方法:
示例1:创建一个<tfoot>元素。
<!DOCTYPE html>
<html>
<head>
<title>Table createTFoot() Method 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 createTFoot() Method</h2>
<p>To create a footer for a table,
double-click the "Add Footer" button.</p>
<table id="Courses" align="center">
<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>
</table>
<br>
<button ondblclick="foot()">
Add Footer
</button>
<script>
function foot() {
var MyTable = document.getElementById("Courses");
// Creating footer.
var MyFooter = MyTable.createTFoot();
var MyRow = MyFooter.insertRow(0);
var MyCell = MyRow.insertCell(0);
MyCell.innerHTML =
"<b>Available On GeeksforGeeks.</b>";
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:
- 苹果Safari
- IE浏览器
- 火狐浏览器
- 谷歌浏览器
- Opera
相关用法
- HTML DOM Table deleteRow()用法及代码示例
- HTML DOM Table deleteCaption()用法及代码示例
- HTML DOM console.table()用法及代码示例
- HTML DOM Table createCaption()用法及代码示例
- HTML DOM Table deleteTHead()用法及代码示例
- HTML DOM Table insertRow()用法及代码示例
- HTML DOM Table deleteTFoot()用法及代码示例
- HTML DOM Table createTHead()用法及代码示例
- HTML DOM Table用法及代码示例
- HTML <table> cellpadding属性用法及代码示例
- HTML <table> cellspacing属性用法及代码示例
- HTML Table tHead用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Table createTFoot() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。