1. select로 선택한 텍스트 가져오기:
$("#cusChildTypeId").find("option:selected").text();
$("#cusChildTypeId option:selected").text()
2 . select로 선택한 값 가져오기:
$("#ddlRegType ").val();
3. select로 선택한 index 가져오기 :
$("#ddlRegType ").get(0).selectedIndex;
4 .선택 항목 수 가져오기
$("#cusChildTypeId").get(0).options.length
5 선택의 선택된 인덱스 설정:
$("#cusChildTypeId").get(0 ).selectedIndex= index;//index는 인덱스 값입니다
6. select의 선택된 값을 설정합니다:
$("#cusChildTypeId").attr("value","Normal");
$("#cusChildTypeId ").val(" Normal");
$("#cusChildTypeId").get(0).value = "Normal";
7. 선택한 텍스트 선택 설정:
1>.
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. 선택할 항목을 추가합니다. 표시되는 내용은 텍스트이고 값은
$("#cusChildTypeId").get(0).options.add(new Option(text,value));
9.Delete 값이
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인 항목 선택 지우기:
1>.$("#cusChildTypeId").empty();
2>. .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 중국어 웹사이트의 기타 관련 기사를 참조하세요!