728x90
$.each(data, function(index, item){
$('.select').append('<option value="'+index+'">'+item+'</option>');
});
다만, 위와 같이 하면 option의 value는 index, text는 item이 된다.
따라서, 만약 value값 역시 item값으로 바꾸고 싶다면, 아래와 같이 사용하면 된다.
$.each(data, function(index, item){
$('.select').append('<option value="'+item+'">'+item+'</option>');
});
모든 option 제거하기
$('#select_box').children().remove();
반응형