简单教程
提交运行
代码编辑器:
<form> <select id="pets"> <option>Cat</option> <option>Dog</option> <option>Horse</option> </select> </form> <p>单击下面按钮禁用下拉列表的第二项</p> <button onclick="disableElement()">禁用选项</button> <script> function disableElement(){ var sel=document.getElementById("pets") sel.options[1].disabled=true; } </script>
运行结果: