//改变时的事件
//选到的项目
//取得下拉选单的选择值
//移除
//使某option变为selected
//jQuery給法
$("#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();
//使某option变为selected
var select = $(tdsEdit[0]).find("select"); //取得select $(select).children().each(function(){ if ($(this).text()=="option you want")
//jQuery給法
复制代码代码如下:
$(this).attr("selected","true"); 或 this.selected = true;
參考
http://www.texotela.co.uk/code/jquery/select/
http://blog.jeremymartin.name/2008/02/easy-multi-select-transfer-with-jquery.html