1.取得select 選取的text:
$("#cusChildTypeId").find("option:selected").text();
$Id("#cusChildType option :selected").text()
2.取得select選取的value:
$("#ddlRegType ").val();
3.取得select選取的索引:
$("#ddlRegType ").get(0).selectedIndex;
4.select > $("#cusChildTypeId").get(0).options.length
5.設定select 選取的索引:
Chi .get(0).selectedIndex=index;//index為索引值
6.設定select 選取的value:
$("#cusChildTypeId").attr(" value","Normal");
$("#cusChildTypeId").val("Normal"); $("#cusChildTypeId").get(0).value = "Normal";
7.設定select 選取的text:
1>.var count=$("#cusChildTypeId").get(0).options.length; i=0;i
break;
2>.$("#cusChildTypeId").val(text);
$("#cusChildTypeId").change();
8.在select中加入一項,顯示內容為text,值為value
9.刪除select中值為value的項目
var count = $("#cusChildTypeId").size(); 🎜 > { if($("#cusChildTypeId").get(0).options[i 🎜> $("#cusChildTypeId").get(0). remove(i);
break;
0.清空Select:
1>. $("#cusChildTypeId").empty ();
2>. $("#cusChildTypeId").get(0).options.length = 0;