[펌글] jQuery select box(콤보박스) 와 option의 제어
– 출처 : http://sexybear.tistory.com/146 – $(“<option></option>”) .attr(“selected”, “selected”) .text(“텍스트”) .attr(“value”, “값”) .appendTo(“#selectboxid”); $(“#selectboxid”) .change(function() { alert(this.value); }); * 참고 removeAttr(‘selected’) 도 염두에 두자