运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> Select your favorite fruit: <select onchange="myFunction(this)"> <option>Apple</option> <option>Orange</option> <option>Pineapple</option> <option>Banana</option> </select> <p id="demo"></p> <script> function myFunction(selTag) { var x = selTag.options[selTag.selectedIndex].text; document.getElementById("demo").innerHTML = "You selected: " + x; } </script> </body> </html>