답변:
이미 존재하는 경우 true로 평가됩니다.
$("#yourSelect option[value='yourValue']").length > 0;
jQuery를 사용하는 다른 방법 :
var exists = false;
$('#yourSelect option').each(function(){
if (this.value == yourValue) {
exists = true;
}
});
.length
.