之前我们介绍过通过jQuery动态向select中添加option的方法,那么怎么通过jQuery动态删除select中的option呢?其实方法很简单。

jQuery删除select中的所有option:


$("#select_id").empty();

jQuery删除select中指定的option:


$("#select_id option:last").remove();  //删除Select中最后一个option
$("#select_id option[index='0']").remove();  //删除Select中第一个option
$("#select_id option[value='a']").remove();  //删除Select中Value='a'的Option