-
jquery json select프로그래밍/jquery 2016. 6. 20. 17:32
jquery json select
var param = ''
$.getJSON('/get_data.hosim',param,
function(data){
var select = $('#sel_list');
var options = select.attr('options');
$('option',select).remove();
$.each(data,function(index,array){
options[options.length] = new Option(array['name']);
});
});
도움이 되셨나요?'프로그래밍 > jquery' 카테고리의 다른 글
스크롤 위/아래 이동 (0) 2020.01.09 jquery radio, checkbox 체크가 되지 않을때 (0) 2016.07.22 jQuery selectbox 제어 및 사용법 (0) 2016.07.19