Table deleteTFoot() 方法
JavaScript基础 2022-06-08 17:14:34小码哥的IT人生shichen
Table deleteTFoot() 方法
定义和用法
deleteTFoot()
方法从表中删除 <tfoot> 元素(及其内容)。
提示:如需为表格创建新的 <tfoot> 元素,请使用 createTFoot() 方法。
另请参阅:
HTML 参考手册:HTML <tfoot> 标签
实例
例子 1
从表中删除 <tfoot> 元素:
document.getElementById("myTable").deleteTFoot();
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<p>单击按钮可从表中删除 tfoot 元素。</p>
<table id="myTable">
<thead>
<tr>
<th>月份</th>
<th>存款</th>
</tr>
</thead>
<tfoot>
<tr>
<td>合计</td>
<td>$180</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>一月</td>
<td>$100</td>
</tr>
<tr>
<td>二月</td>
<td>$80</td>
</tr>
</tbody>
</table>
<br>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
document.getElementById("myTable").deleteTFoot();
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
例子 2
创建和删除 <tfoot> 元素:
function myCreateFunction() {
var table = document.getElementById("myTable");
var footer = table.createTFoot();
var row = footer.insertRow(0);
var cell = row.insertCell(0);
cell.innerHTML = "<b>This is a table footer</b>";
}
function myDeleteFunction() {
document.getElementById("myTable").deleteTFoot();
}
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
table, td {
border: 1px solid black;
}
</style>
</head>
<body>
<p>单击按钮为表创建和删除 tfoot 元素。</p>
<table id="myTable">
<tr>
<td>单元格 1</td>
<td>单元格 2</td>
</tr>
<tr>
<td>单元格 3</td>
<td>单元格 4</td>
</tr>
</table>
<br>
<button onclick="myCreateFunction()">创建 tfoot</button>
<button onclick="myDeleteFunction()">删除 tfoot</button>
<script>
function myCreateFunction() {
var table = document.getElementById("myTable");
var footer = table.createTFoot();
var row = footer.insertRow(0);
var cell = row.insertCell(0);
cell.innerHTML = "<b>这是一个表格页脚</b>";
}
function myDeleteFunction() {
document.getElementById("myTable").deleteTFoot();
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
tableObject.deleteTFoot()
参数
无。
返回值:
无返回值。
浏览器支持
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
支持 | 支持 | 支持 | 支持 | 支持 |