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>
运行实例 »
点击 "运行实例" 按钮查看在线实例