//変更時のイベント
$("#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();
//削除
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) "); //または selected
//javascript method
this.selected = true;
});
Reference
http: //www.texotela.co .uk/code/jquery/select/http://blog.jeremymartin.name/2008/02/easy-multi-select -transfer-with-jquery.html