这应该有效:
$('option').hide(); // hide options
它适用于 Firefox,但不适用于 Chrome(可能不适用于 IE,未经测试)。
一个更有趣的例子:
<select>
<option class="hide">Hide me</option>
<option>visible option</option>
</select>
<script type="text/javascript">
// try to hide the first option
$('option.hide').hide();
// to select the first visible option
$('option:visible').first().attr('selected', 'selected');
</script>
或查看http://jsfiddle.net/TGxUf/ 上的示例
是从 DOM 中分离选项元素的唯一选择吗?我需要稍后再向他们展示,所以这不会很有效。