Heim > Artikel > Web-Frontend > Option im Auswahlelement dynamisch erstellen
1) Verwendung des Option-Konstruktors und der add()-Methode
2) Verwendung der DOM-Methoden
let newOption = new Option('Option Text','Option Value'); const select = document.querySelector('select'); select.add(newOption,undefined);
// create option using DOM const newOption = document.createElement('option'); const optionText = document.createTextNode('Option Text'); // set option text newOption.appendChild(optionText); // and option value newOption.setAttribute('value','Option Value'); const select = document.querySelector('select'); select.appendChild(newOption);
Das obige ist der detaillierte Inhalt vonOption im Auswahlelement dynamisch erstellen. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!