如何删除选择框的所有选项,然后添加一个选项并使用jQuery选择它?

使用core jQuery,如何删除选择框的所有选项,然后添加一个选项并选择它?

我的选择框如下。

<Select id="mySelect" size="9"> </Select>

编辑:以下代码对链接很有帮助。但是,(在 Internet Explorer 中)未选择已添加的选项。(我确实在 和 中使用相同的“值”。.val('whatever').append.val

$('#mySelect').find('option').remove().end()
.append('<option value="whatever">text</option>').val('whatever');

编辑:试图让它模仿这个代码,每当页面/表单重置时,我都使用以下代码。此选择框由一组单选按钮填充。 更接近,但该选项似乎不像 使用 一样被选中。我现有的代码没有什么问题 - 我只是在尝试学习jQuery。.focus().selected= "true"

var mySelect = document.getElementById('mySelect');
mySelect.options.length = 0;
mySelect.options[0] = new Option ("Foo (only choice)", "Foo");
mySelect.options[0].selected="true";

编辑:选择的答案接近我需要的。这对我有用:

$('#mySelect').children().remove().end()
.append('<option selected value="whatever">text</option>') ;

但这两个答案都引导我找到了最终的解决方案。


答案 1
$('#mySelect')
    .find('option')
    .remove()
    .end()
    .append('<option value="whatever">text</option>')
    .val('whatever')
;

答案 2
$('#mySelect')
    .empty()
    .append('<option selected="selected" value="whatever">text</option>')
;