我使用以下代码重置IE中选择列表的选定索引:
$("#list")[0].selectedIndex = -1
但是,这似乎不适用于FF和Chrome。谁能告诉我实现这个目标的正确方法是什么?
答案 0 :(得分:6)
使用jQuery的.prop
方法。可以找到文档here。
得到:
$("#list").prop("selectedIndex");
集:
$("#list").prop("selectedIndex",-1);
答案 1 :(得分:1)
为什么不呢?
$("#list option").attr("selected", false);