jquery 清楚selected和选中selected

清除当前选中的selected属性
$("#id select[name='" + select_name+ "']>option:selected").removeAttr("selected");

选中某个option
$("#id select[name='" + select_name+ "']").find("option[value='"+ select_value +"']").attr("selected", "selected");

你可能感兴趣的:(web)