VPS主机
测评与优惠

jQuery删除select中(所有)的option的方法

之前我们介绍过通过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
赞(0)
未经允许不得转载:主机之家测评 » jQuery删除select中(所有)的option的方法

评论 抢沙发

评论前必须登录!

立即登录   注册