Добрый день, как всегда exploer отображает все не так (точнее вообще не отображает
)
В общем генерирую таблицу так:
В мазиле и гугле, все нормально отображается в, а в ...... пусто
PS: как там по смотреть итоговый код страницы? т.е что он там наворотил, нашел только что можно посмотреть исходный код
function TestMakeTable(){
var count=0;
var item=1;
//--------------------------------------------------
var button = document.createElement("button");
button.setAttribute("id", "id_butt_save_af");
button.setAttribute("type", "submit");
button.innerHTML="Сохранить";
//--------------------------------------------------
var input = document.createElement("input");
input.setAttribute("value", "87.9");
input.setAttribute("class", "JSON");
input.setAttribute("style", "width:40px");
input.setAttribute("maxlength", "5");
input.setAttribute("disabled", "");
//--------------------------------------------------
var checkbox = document.createElement("input");
checkbox.setAttribute("class", "JSON");
checkbox.setAttribute("value", "checkbox");
checkbox.setAttribute("type", "checkbox");
//--------------------------------------------------
var table = document.createElement('table');
var th = document.createElement("th");
var th = table.appendChild(th);
th.setAttribute('colspan', '5');
table.setAttribute('id', 'id_AF_Tabele');
//--------------------------------------------------
//var table = document.createElement('table');
//var tr = table.insertRow();
//var start=tr.insertCell();
//start.setAttribute('id', 'table_left');
//start.setAttribute('colspan', '5');
var temp=input.cloneNode(true);
temp.setAttribute("id", "id_AF_count");
temp.setAttribute("value", "0");
temp.setAttribute("name", "N_AF_count");
//table.appendChild(tr);
//table.appendChild(start);
var end = table.insertRow(0);
var td=end.insertCell(0);
td.setAttribute('id', 'table_left');
td.setAttribute('colspan', '5');
td.appendChild(temp);
//--------------------------------------------------
//--------------------------------------------------
for (var i = 0; i < 5; i++) {
var tr = table.insertRow(i);
for (var j = 0; j < 5; j++) {
var td=tr.insertCell(j);
td.setAttribute('id', 'table_left');
td.setAttribute('width', '198');
if(item>9){
td.innerHTML = "AF"+item+": ";
}else{
td.innerHTML = "AF0"+item+": ";
}
//----------------------------------------
var temp=input.cloneNode(true);
temp.setAttribute("id", "id_AF_"+count);
temp.setAttribute("name", "N_AF_"+count);
td.appendChild(temp);
//----------------------------------------
var temp=checkbox.cloneNode(true)
temp.setAttribute("id", "id_AF_box_"+count);
temp.setAttribute("name", "N_AF_box_"+count);
//----------------------------------------
td.appendChild(temp);
count++;
item++;
}
}
//------------------------------------------------------------
var end = table.insertRow();
var td=end.insertCell();
td.setAttribute('id', 'table_left');
td.setAttribute('colspan', '5');
td.appendChild(button);
//------------------------------------------------------------
var div = document.getElementById('id_AF_Tabele_content');
div.appendChild(table);
//------------------------------------------------------------
//------------------------------------------------------------
//------------------------------------------------------------
}