<select id="x" style="width:200px;">
<option>one</option>
<option>two</option>
</select>
<input type="button" value="Disable" onclick="$('#x').attr('disabled','disabled')"/>
<input type="button" value="Enable" onclick="$('#x').removeAttr('disabled')"/>
选项列表在第select
一次单击时被禁用,但在单击按钮disable
时不会再次启用。Enable
请告诉我,上面的代码有什么问题?
我在 Windows 上使用 Chrome 23.0.1271.64。