TAG
JavaScript
Result
Run
License
<select id="fruits"> <option value="Apple">Apple</option> <option value="Banana" label="바나나">Banana</option> <option value="Carrot" label="당근">Carrot</option> </select>
document.addEventListener("DOMContentLoaded", function() { const $elFruits = document.getElementById("fruits"); $elFruits.addEventListener("change", e => { [...e.currentTarget.children].forEach(elOption => { if(elOption.selected) { console(elOption.value); } }); }); $elFruits.dispatchEvent(new Event("change")); });
Console
expand_less
License
License
by DevDic
Close