//변경시 이벤트
$("#testSelect").change(function(){ //이벤트 발생
jQuery('option:selected', this).each(function(){ //선택한 여러 값을 출력
Alert(this.value);
});
//선택한 항목 인쇄
방법 1: $("select#Clubs").children("[@selected] " ).each(function(){
alert(this.text);
});
방법 2: $("#selBags").val(); //이 방법이 더 빠르지만 단일 선택만
//드롭다운 메뉴의 선택 값 가져오기
$(#testSelect option:selected').text()
또는 $("#testSelect"). find('option:selected' ).text();
//Remove
removeOption(index/value/regex[, selectedOnly]) $('select#Clubs option:selected').remove ()
//옵션 선택
var select = $(tdsEdit[0]).find("select"); //선택 가져오기
$(select).children(). Each(function(){
if ( $(this).text()=="원하는 옵션")
//jQuery 메서드
$(this).attr("selected","true "); //또는 선택됨
//javascript 메소드
this.selected = true;
});
참조
http: //www.texotela.co .uk/code/jquery/select/
http://blog.jeremymartin.name/2008/02/easy-multi-select -transfer-with-jquery.html