回答:
すでに存在する場合、これはtrueと評価されます。
$("#yourSelect option[value='yourValue']").length > 0;jQueryを使用する別の方法:
var exists = false; 
$('#yourSelect  option').each(function(){
  if (this.value == yourValue) {
    exists = true;
  }
});
.lengthます。