반응형
var thevalue = 'foo';
var exists = 0 != $('#select-box option[value='+thevalue+']').length;

옵션이 javascript 로 설정된다면 다음 방법을 사용한다

var exists = false;
$('#select-box option').each(function(){
    if (this.value == 'bar') {
        exists = true;
        return false;
    }
});

#select-box 는 select tag 의 id 이다




출처: http://godwithus.tistory.com/246 [우물물아 넘쳐나라!]

반응형

+ Recent posts