[펌글] jQuery select box(콤보박스) 와 option의 제어

By | 11월 8, 2011

- 출처 : http://sexybear.tistory.com/146 -

$("<option></option>")
	.attr("selected", "selected")
	.text("텍스트")
	.attr("value", "값")
	.appendTo("#selectboxid");
$("#selectboxid")
	.change(function() { alert(this.value); });

* 참고

   removeAttr('selected') 도 염두에 두자

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments