运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <select id="mySelect" size="5"> <option>Cat</option> <option>Dog</option> <option>Horse</option> <option>Elephant</option> <option>Mouse</option> <option>Fish</option> <option>Cow</option> </select> <p>Click the button to return the number of visible options in the dropdown list.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("mySelect").size; document.getElementById("demo").innerHTML = x; } </script> </body> </html>