Posted in Javascript onMay 06, 2009
//改??r的事件
$("#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(); //???比?快啦,但限?芜x
//取得下拉??蔚倪x取值
$(#testSelect option:selected').text(); 或$("#testSelect").find('option:selected').text();
//移除
removeOption(index/value/regex[, selectedOnly])
$('select#Clubs option:selected').remove();
//使某option???elected
var select = $(tdsEdit[0]).find("select"); //取得select $(select).children().each(function(){ if ($(this).text()=="option you want")
//jQuery?法
$(this).attr("selected","true"); //或是?selected也可 //javascript?法 this.selected = true; });
?⒖?BR>http://www.texotela.co.uk/code/jquery/select/
http://blog.jeremymartin.name/2008/02/easy-multi-select-transfer-with-jquery.html
jQuery select的操作实现代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@