query去掉下拉框的某项
$("#id option").each(function(){
var val= this.text;
if(val == '全部'){
$(this).remove();
}
});
$("#id option").each(function(){
var val= this.text;
if(val == '全部'){
$(this).remove();
}
});