运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <body> <select id="pets" size="3"> <option>Cat</option> <option>Dog</option> <option>Horse</option> </select> <p>Click the button to disable the third option (index 2) in the dropdown list.</p> <button onclick="myFunction()">Disable Option</button> <script> function myFunction() { var x = document.getElementById("pets").options[2].disabled = true; } </script> </body> </html>