<select size="2">
<option selected="selected">Input your option</option>
<option>Input your option</option>
</select>

使用jQuery优雅地取消选项的最佳方法是什么?


当前回答

另一种简单的方法:

$ (" # selectedID”)[0 - 9]。选择= -1

其他回答

在你的选择中设置一个id,像这样: <select id="foo" size="2">

然后你可以使用: $ (" # foo”)。道具(“selectedIndex”,0).change ();

$("option:selected").attr("selected", false);

另一种简单的方法:

$ (" # selectedID”)[0 - 9]。选择= -1

$("#select_id option:selected").prop("selected", false);
$("#selectID option:selected").each(function(){
  $(this).removeAttr("selected");
});

这将遍历每个项目,只取消选中的项目