1.取得select 選取的text:
$("#cusChildTypeId").find("option:selected").text();
$("#cusChildTypeId option:selected").text ()
2.取得select選取的value:
$("#ddlRegType ").val();
3.取得select選取的索引
var count=$("#cusChildTypeId").get(0).options.length; for(var i=0;i<count;i++) { if($("#cusChildTypeId").get(0).options.text == text) { $("#cusChildTypeId").get(0).options.selected = true; break; } }### 2>.## #
$("#cusChildTypeId").val(text); $("#cusChildTypeId").change();###8.新增一項,顯示內容為text,值為value ### $("#cusChildTypeId").get(0).options.add(new Option(text,value)) ;######9.###刪除###select中值為value的項目 ###
var count = $("#cusChildTypeId").size(); for(var i=0;i<count;i++) { if($("#cusChildTypeId").get(0).options[i].value == value) { $("#cusChildTypeId").get(0).remove(i); break; } }###10.清除Select:### 1>. $("#cusChildTypeId").empty ();### 2>. $("#cusChildTypeId").get(0).options.length = 0; #########實例:###
$("document").ready(function(){ $("#btn1").click(function(){ $("[name='checkbox']").attr("checked",'true');//全选 }) $("#btn2").click(function(){ $("[name='checkbox']").removeAttr("checked");//取消全选 }) $("#btn3").click(function(){ $("[name='checkbox']:even").attr("checked",'true');//选中所有奇数 }) $("#btn4").click(function(){ $("[name='checkbox']").each(function(){//反选 if($(this).attr("checked")){ $(this).removeAttr("checked"); } else{ $(this).attr("checked",'true'); } }) }) $("#btn5").click(function(){//输出选中的值 var str=""; $("[name='checkbox'][checked]").each(function(){ str+=$(this).val()+"\r\n"; //alert($(this).val()); }) alert(str); }) })
以上是設定取得Select常用方法匯總的詳細內容。更多資訊請關注PHP中文網其他相關文章!