ich hab hier folgenden Code:
Ich hab also eine Liste mit mehreren Einträge und möchte nun Text und Value dieser Liste in eine andere Übertragen. Leider bekommen ich den Text von "neu" nicht in "Auswahl", da "document.Testform.neu.text" nicht das richtige ist.
Kann mir da jemand helfen?
DAnke schonmal,
Holy
Code:
<script type="text/javascript"> <!-- function Hinzufuegen() { NeuerEintrag = new Option(document.Testform.neu.text,document.Testform.neu.value,false,true); document.Testform.Auswahl.options[document.Testform.Auswahl.length] = NeuerEintrag; document.Testform.neu.value = ""; } //--> </script> <form name="Testform" action=""> <select name="Auswahl" size="8"> <option>Ein Eintrag</option> </select> <br> <select name="neu" size="8"> <option value='001'>Ein 1 Eintrag</option> <option value='002'>Ein 2 Eintrag</option> <option value='003'>Ein 3 Eintrag</option> </select> <input type="button" value="Hinzu" onClick="Hinzufuegen()"> </form>
Kann mir da jemand helfen?
DAnke schonmal,
Holy
Kommentar