- 출처 : http://sexybear.tistory.com/146 -
$("<option></option>")
.attr("selected", "selected")
.text("텍스트")
.attr("value", "값")
.appendTo("#selectboxid");
$("#selectboxid")
.change(function() { alert(this.value); });
* 참고
removeAttr('selected') 도 염두에 두자