Respuestas:
Esto se evalúa como verdadero si ya existe:
$("#yourSelect option[value='yourValue']").length > 0;
Otra forma de usar jQuery:
var exists = false;
$('#yourSelect option').each(function(){
if (this.value == yourValue) {
exists = true;
}
});
.length
podría hacerlo.
Me ayuda:
var key = 'Hallo';
if ( $("#chosen_b option[value='"+key+"']").length == 0 ){
alert("option not exist!");
$('#chosen_b').append("<option value='"+key+"'>"+key+"</option>");
$('#chosen_b').val(key);
$('#chosen_b').trigger("chosen:updated");
}
});
Tuve un problema similar En lugar de ejecutar la búsqueda a través del dom cada vez que el ciclo para el control select guardé el elemento jquery select en una variable e hice esto:
function isValueInSelect($select, data_value){
return $($select).children('option').map(function(index, opt){
return opt.value;
}).get().includes(data_value);
}