怎样把select中的option禁止了-也就是怎么禁止选择下拉框中的某个选项
原来在优快云上回的一个帖子,觉得不错,当时还很得意思,现在整理一下。发出来。
<html> <head> <style type="text/css"> .disabled { } .disabled optgroup{ font-size: 12px; font-style: normal; font-weight: normal; font-variant: normal; color:#CCCCCC; background-color: #F5F5F5; } .disabled option { padding-left:0px; } </style> <title></title> </head> <body> <select name="carCos" class="disabled"> <optgroup label="American"></optgroup> <option value="General Motors">General Motors</option> <option value="Ford">Ford Motor Company</option> <option value="Chrysler">DaimlerChrysler</option> <optgroup label="Japanese"> </optgroup> </select><br> 用这种变态的方式可以实现,在firefox和ie6下看效果很好 </body> </html>