프로그래밍 언어/jQuery, ajax

<select> 에 option을 추가하는 손쉬운 방법

Rateye 2021. 6. 27. 14:27
728x90
반응형
질문 : 옵션 추가

jQuery를 사용하여 드롭 다운에 option 을 추가하는 가장 쉬운 방법은 무엇입니까?

작동할까요?

$("#mySelect").append('<option value=1>My option</option>');
답변

 


이것은 IE8에서 작동하지 않았습니다 (아직 FF에서는 작동했습니다).

$("#selectList").append(new Option("option text", "value"));

이 작업은 :

var o = new Option("option text", "value");
/// jquerify the DOM object 'o' so we can use the html method
$(o).html("option text");
$("#selectList").append(o);
출처 : https://stackoverflow.com/questions/740195/adding-options-to-a-select-using-jquery
728x90
반응형