2016-07-27 18 views
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

Antwort

1

ich habe ein exemple hier erstellt: https://jsfiddle.net/xctty5bd/1/

// get select element with id 'choixType' 
var select = document.getElementById('choixType'); 

for (var i = 0; i < 10; i++) { 
    // first you create the element <option></option> 
    var option = document.createElement('option'); 
    // then you add value and text 
    option.value = i; 
    option.text = i; 
    // and then you put option at the end of your select 
    select.appendChild(option); 
} 
+0

Vielen Dank für Ihre Hilfe, aber ich habe mehr als Dropdown-Liste, ich habe k Dropdown-Liste und k ist Variante, – oaninat

+0

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

+0

yees danke :) – oaninat