create

英[kriˈeɪt]   美[kriˈet]  

vt.產生;創造,創作;封爵,把…封為(貴族)

vi.[英][俚] 大發脾氣,大發牢騷

第三人稱單數: creates 現在分詞: creating 過去式: created 過去分詞: created

#head

英[hed]   美[hɛd]  

n.頭部;頭腦;上端;首腦,首長

vt.用頭頂;前進;作為…的首領;站在…的前頭

vi.朝…行進;出發;向…方向移動;船駛往

adj.頭的;在前頭的;首要的;在頂端的

第三人稱單數: heads 複數: heads 現在分詞: heading 過去式: headed 過去分詞: headed

javascript createTHead() 方法 語法

作用:用於在表格中取得或建立 <thead> 元素。

語法:tableObject.createTHead()

回傳:傳回一個 TableSection,表示該表的 <thead> 元素。如果該表格已經有了表頭,則傳回它。如果該表沒有表頭,則建立一個新的空 <thead> 元素,把它插入表格,並傳回它。

javascript createTHead() 方法 範例

<html>
<head>
<script type="text/javascript">
function createCaption()
{
var x=document.getElementById('myTable').createTHead()
x.innerHTML="My table head"
}
</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>

執行實例 »

點擊 "執行實例" 按鈕查看線上實例