javascript createTHead()方法
翻訳結果:
create
UK[kriˈeɪt] 美[kriˈet]
vt. 生産する; 作成する、創造する; 高貴にする、高貴にする...(貴族)
vi.[英語][スラング] Lose your temper, quit
三人称単数:create 現在分詞:creating 過去形:created 過去分詞:created
head
英[hed] 美[hɛd]
n.Head; head; upper end; head, leader
vt. 上部を使用する頭の; 前に進む; ... のリーダーとして; ...
vi. ... に向かって行進する; 出発する; ... の方向に移動する; ship Sails to
adj. 頭; 前部; 最初;
上部 三人称単数: heads 複数形: head 現在分詞: 見出し 過去形: 見出し 過去分詞: 見出し
javascript createTHead()方法構文
関数:テーブル内の <thead> 要素を取得または作成するために使用されます。
構文: tableObject.createTHead()
戻り値: テーブルの <thead> 要素を表す TableSection を返します。 。テーブルに既にヘッダーがある場合は、それを返します。テーブルにヘッダーがない場合は、新しい空の <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>
インスタンスの実行 »
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します