JavaScript 参考手册
Option disabled 属性
禁用下拉列表的第二选项
源代码:
点击运行 »
<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>
运行结果:
点击运行 »