0
Ich versuche, ein Select mit Javascript zu füllen:Wie kann ich in Javascript eine Variable in formulaire Option setzen
for (i=0; i<10; i++)
{
formulaire.choixType[i].options.length= 10;
formulaire.choixType[i].options[i].value =i;
formulaire.choixType[i].options[i].text =i;
}
ich habe 10 Select (K von 0 bis 9):
<div>
<select name="choixType[k]" id="choixType" >
<option value="" selected="selected">---choose-</option>
</select>
</button>
</div>
wie kann ich dies tun, danke für die Hilfe
Vielen Dank für Ihre Hilfe, aber ich habe mehr als Dropdown-Liste, ich habe k Dropdown-Liste und k ist Variante, – oaninat
Verwenden Sie einfach eine einfache Schleife, um jede Auswahl zu füllen, wird es jetzt einfach sein, da Sie wissen, wie man einen füllt. – Gatsbill
yees danke :) – oaninat