fonction createTable(lignes, lignes){
This.rows=rows;
This.lines=lines;
var Body=document.getElementById('body');
var Table=document.createElement('table');//Créer un élément de balise de table
Table.setAttribute('border','1');
//Ajouter d'autres attributs à la balise table
pour(var i=0;i
var lRow=document.createElement('tr');
pour(var j=0;j
var textNode=document.createTextNode(i ',' j);
var lLine=document.createElement('td');
lLine.appendChild(textNode);
lRow.appendChild(lLine);
}
Table.appendChild(lRow);
}
Body.appendChild(Table);
}