Respostas:
Isso avalia como verdadeiro se ele já existe:
$("#yourSelect option[value='yourValue']").length > 0;
Outra maneira de usar o jQuery:
var exists = false;
$('#yourSelect option').each(function(){
if (this.value == yourValue) {
exists = true;
}
});
.length
faria.
Isso me ajuda:
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");
}
});
Eu tive uma questão semelhante. Em vez de executar a pesquisa através do dom toda vez que o loop para o controle select eu salvei o elemento jquery select em uma variável e fiz o seguinte:
function isValueInSelect($select, data_value){
return $($select).children('option').map(function(index, opt){
return opt.value;
}).get().includes(data_value);
}