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>
執行實例 »
點擊 "執行實例" 按鈕查看線上實例