// 뒤쪽에 옵션 추가$("#myselect").append("Apples"); $("#myselect").append("After Apples"); // 앞쪽에 옵션 삽입 $("#myselect").prepend("Before Apples"); // 옵션변경 $("#myselect").html("Some orangesMore OrangesEven more oranges"); // 인덱스 위치에 따라 옵션 변경 $("#myselect option:eq(1)").replaceWith("Some apples"); $("#myselect option:eq(2)").replaceWith("Some bananas"); // 2번째 옵션 셀렉트 $("#myselect option:eq(2)").attr("selec..