Ultimele tutoriale de dezvoltare web
 

Masa createTHead() Method

<Tabelul Object

Exemplu

Crearea unui <thead> Element (and insert a <tr> and <td> element to it) :

// Find a <table> element with id="myTable":
var table = document.getElementById("myTable");

// Create an empty <thead> element and add it to the table:
var header = table.createTHead();

// Create an empty <tr> element and add it to the first position of <thead> :
var row = header.insertRow(0);    

// Insert a new cell (<td>) at the first position of the "new" <tr> element:
var cell = row.insertCell(0);

// Add some bold text in the new cell:
cell.innerHTML = "<b>This is a table header</b>";
Încearcă - l singur »

Definiție și utilizare

createTHead() Metoda creează un gol <thead> elementul și îl adaugă la masa.

Note: În cazul în care un <thead> există deja elementul pe masa, createTHead() metoda returneaza cea existentă, și nu creează unul nou.

Notă: <thead> Elementul trebuie să aibă una sau mai multe <tr> etichete în interior.

Tip: Pentru a elimina <thead> Elementul dintr - un tabel, utilizați deleteTHead() metoda.


Suport pentru browser-

Metodă
createTHead() da da da da da

Sintaxă

tableObject .createTHead()

Parametrii

Nici unul

Detalii tehnice

Întoarcere Valoare: Nou creat (or an existing) <thead> Element

Mai multe exemple

Exemplu

Crearea și ștergerea unui <thead> Element:

function myCreateFunction() {
    var table = document.getElementById("myTable");
    var header = table.createTHead();
    var row = header.insertRow(0);
    var cell = row.insertCell(0);
    cell.innerHTML = "<b>This is a table header</b>";
}

function myDeleteFunction() {
    document.getElementById("myTable").deleteTHead();
}
Încearcă - l singur »

Pagini similare

HTML de referință: HTML <thead> tag


<Tabelul Object