Bonjour, j'essais de faire une liste déroulante. Voici mon code :
var sel = document.createElement("select" );
var opt1 = document.createElement("option" );
var opt2 = document.createElement("option" );
var opt3 = document.createElement("option" );
var opt4 = document.createElement("option" );
var opt5 = document.createElement("option" );
opt1.setAttribute("value","1" );
opt2.setAttribute("value","2" );
opt3.setAttribute("value","3" );
opt4.setAttribute("value","4" );
opt5.setAttribute("value","5" );
opt1.appendChild(document.createTextNode('>1'));
opt2.appendChild(document.createTextNode('>2'));
opt3.appendChild(document.createTextNode('>3'));
opt4.appendChild(document.createTextNode('>4'));
opt5.appendChild(document.createTextNode('>5'));
NV_CONTENT.appendChild(sel);
NV_CONTENT.appendChild(opt1);
Ca affiche bien un select mais vide et en dessous >1
Ou est mon erreur selon vous ?
Merci