DJ메탈짱™의 Free Style

[Jquery] Array를 활용한 SelectBox Item 추가 본문

일(job)/FRONT

[Jquery] Array를 활용한 SelectBox Item 추가

뽀&쏭 2016. 1. 21. 11:28

// Array를 활용한 SelectBox Item 추가

var newOptions = {

'00':'오전12','01':'오전1','02':'오전2','03':'오전3','04':'오전4','05':'오전5','06':'오전6' ,'07':'오전7'

,'08':'오전8','09':'오전9','10':'오전10','11':'오전11' ,'12':'오후12','13':'오후1','14':'오후2'

,'15':'오후3','16':'오후4','17':'오후5','18':'오후6'

,'19':'오후7','20':'오후8','21':'오후9','22':'오후10','23':'오후11'

};

var select = $('#xmlSchEndTime');

var options = select.attr('options');

$('option', select).remove();  

$.each(newOptions, function(val, text) {

options[options.length] = new Option(text, val);

});