Ну елки, вот кусок который можно посмотреть:
var table = document.createElement('table');
var thead = document.createElement('thead');
var tr_head = document.createElement('tr');
var th = document.createElement('th');
th.innerHTML = 'заголовок 1';
tr_head.appendChild(th);
var th = document.createElement('th');
th.innerHTML = 'заголовок 2';
tr_head.appendChild(th);
thead.appendChild(tr_head);
var tfoot = document.createElement('tfoot');
var tr_foot = document.createElement('tr');
var td_foot = document.createElement('td');
td_foot.innerHTML = 'нет данных';
td_foot.setAttribute('colspan', 2);
tr_foot.appendChild(td_foot);
tfoot.appendChild(tr_foot);
table.appendChild(thead);
table.appendChild(tfoot);