HTMLTableElement: createTFoot() 方法
报告反馈
createTFoot()
方法是 HTMLTableElement
对象的方法,它返回与给定 <table>
关联的 <tfoot>
元素。如果表中不存在页脚,此方法会创建它,然后返回它。
语法
注意: 如果不存在页脚,
createTFoot()
会将新页脚直接插入到表中。不需要像使用 Document.createElement()
创建新的 <tfoot>
元素那样,单独添加页脚。createTFoot()
js
参数
无。
示例
注意: 如果不存在页脚,
createTFoot()
会将新页脚直接插入到表中。不需要像使用 Document.createElement()
创建新的 <tfoot>
元素那样,单独添加页脚。let myfoot = mytable.createTFoot();
// Now this should be true: myfoot === mytable.tFoot
规范
返回值 |
---|
规范 # HTML 标准 |
浏览器兼容性
dom-table-createtfoot-dev