執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <select id="mySelect" size="1"> <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 change the number of visible options in the dropdown list.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("mySelect").size = "4"; } </script> </body> </html>