1) Option コンストラクターと add() メソッドの使用
2) DOM メソッドの使用
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);
以上がselect要素にオプションを動的に作成するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。