oulala !!!! un GRAND merci à toi
FremyCompany :D
j'aurais pu chercher très très longtemps... 8O
par contre je ne comprend pas trop pourquoi tu m'as mis :
tableau = tableau.firstChild;
Mon code :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| var table = document.createElement('table');
var tbody = document.createElement('tbody');
//tableau = tableau.firstChild;
for (var i = 0; i < 5; i++) {
//
var ligne = document.createElement('tr');
var cellule = document.createElement('td');
var texte = document.createTextNode("TD n°"+i);
//
cellule.appendChild(texte);
ligne.appendChild(cellule);
tbody.appendChild(ligne);
}
table.appendChild(tbody);
document.getElementById('zone_resultats').appendChild(table); |
En tout cas, maintenant ça marche... :mrgreen:
Encore merci
@+ ;)