Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我会从 id="myid" 的选择中删除所有选项(但值 = 0 的第一个选项)。
我不会使用 empty() 然后 append()。
如果是第一个元素,使用 gt 并删除
$("#myid option:gt(0)").remove();
使用属性选择器
$('#myid option[value!="0"]').remove();
使用过滤器
$('#myid option').filter( function () { return parseInt(this.value,10) !== 0; } );