пример
Создание <thead> элемент (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>";
Попробуй сам " Определение и использование
createTHead() метод создает пустой <thead> элемент и добавляет его к столу.
Note: Если <thead> элемент уже существует в таблице, createTHead() метод возвращает существующий, а не создает новый.
Примечание: <thead> элемент должен иметь один или более <tr> теги внутри.
Tip: Чтобы удалить <thead> элемент из таблицы, используйте deleteTHead() метод.
Поддержка браузеров
метод | |||||
---|---|---|---|---|---|
createTHead() | да | да | да | да | да |
Синтаксис
tableObject .createTHead()
параметры
Никто |
Технические подробности
Возвращаемое значение: | Вновь созданный (or an existing) <thead> элемент |
---|
Еще примеры
пример
Создание и удаление <thead> элемент:
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();
}
Попробуй сам " Похожие страницы
HTML ссылка: HTML <thead> Тег
<Таблица объекта