<form name="f">
<select name="s">
<option></option>
<option></option>
<option></option>
</select>
<input type="reset" value="Select无效" onclick="f.s.disabled=true;" />
</form>

解决方案 »

  1.   

    <BODY onLoad="document.getElementById('sel').disabled = true">
    <FORM name="form1" method="post" action="">
      <SELECT name="sel">
      <OPTION>aaa</OPTION>
      <OPTION>aaa</OPTION>
      <OPTION>aaa</OPTION>
      <OPTION>aaa</OPTION>      
      </SELECT>
    </FORM>
    </BODY>
      

  2.   

    不会的,select控件也可以用这个属性,一定是你的语句写错了!
    <select name="s1">
    <option>aaa</option>
    <option>bbb</option>
    <option>ccc</option>
    </select>
    <input type="button" value="test" onclick="s1.disabled=!s1.disabled" />