javascript createTFoot()方法
翻译结果:
create
英 [kriˈeɪt] 美 [kriˈet]
vt.产生;创造,创作;封爵,把…封为(贵族)
vi.[英][俚]大发脾气,大发牢骚
第三人称单数: creates 现在分词: creating 过去式: created 过去分词: created
foot
英 [fʊt] 美 [fʊt]
n.脚;底部;英尺(=12 英寸或 30。48 厘米);脚步
vt.走,踏
vt.& vi.结算,总计,共计
第三人称单数: foots 复数: feet 现在分词: footing 过去式: footed 过去分词: footed
javascript createTFoot()方法语法
作用:用于在表格中获取或创建 <tfoot> 元素。
语法:tableObject.createTFoot()
返回:返回一个 TableSection,表示该表的 <tfoot> 元素。如果该表格已经有了脚注,则返回它。如果该表没有脚注,则创建一个新的空 <tfoot> 元素,把它插入表格,并返回它。
javascript createTFoot()方法示例
<html> <head> <script type="text/javascript"> function createCaption() { var x=document.getElementById('myTable').createTFoot() x.innerHTML="My table foot" } </script> </head> <body> <table id="myTable" border="1"> <tr> <td>Row1 cell1</td> <td>Row1 cell2</td> </tr> <tr> <td>Row2 cell1</td> <td>Row2 cell2</td> </tr> </table> <br /> <input type="button" onclick="createCaption()" value="Create caption"> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例