JQuery가 세 가지 주요 컨트롤(드롭다운, 라디오 선택, 선택 선택)을 작동하는 방법_jquery

WBOY
풀어 주다: 2016-05-16 17:26:30
원래의
969명이 탐색했습니다.
코드 복사 코드는 다음과 같습니다.

라디온



1. 선택한 값을 가져옵니다.
$('input:radio:checked').val()
$("input[type='radio']:checked") .val();
$("input[name='rd']:checked").val()
2. 첫 번째 라디오를 선택한 값으로 설정합니다:
$('input: radio:first').attr('checked', 'checked');
또는
$('input:radio:first').attr('checked', 'true')
:attr("checked",'checked')= attr("checked", 'true')= attr("checked",true)
3. 마지막 라디오를 선택한 값으로 설정합니다:
$( ' input:radio:last').attr('checked', 'checked');
또는
$('input:radio:last').attr('checked', 'true')
4. 인덱스 값에 따라 임의의 라디오를 선택한 값으로 설정합니다:
$('input:radio').eq(index value).attr('checked', 'true'); ,1, 2....
또는
$('input:radio').slice(1,2).attr('checked', 'true')
5. 확인된 값
$("input:radio[value='rd2']").attr('checked','true')
또는
$("input[value='rd2'] ").attr('checked','true');
6. 값이 rd2인 라디오 삭제
$("input:radio[value='rd2']").remove();
7. 삭제할 라디오
$("input:radio").eq(index value).remove(); index value=0,1,2....
예를 들어 세 번째 라디오:$("input:radio").eq(2).remove();
8. 트래버스 라디오
$('input:radio').each(function(index,domEle){
//코드 작성
})
DropDownList
1. 선택한 항목의 값을 가져옵니다.
$ ( 'select#sel option:selected').val();
또는
$('select#sel').find('option:selected').val()
선택 항목 가져오기 항목 텍스트 값:
$('select#seloption:selected').text();
또는
$('select#sel').find('option:selected').text() ;
2. 현재 선택한 항목의 인덱스 값을 가져옵니다.
$('select#sel').get(0).selectedIndex
3.
$( 'select#sel option:last').attr("index")
4 DropdownList의 길이를 가져옵니다.
$('select#sel')[0].options.length ;
또는
$('select#sel').get(0).options.length
5. 첫 번째 옵션을 선택한 값으로 설정합니다:
$('select#sel option; :first').attr ('selected','true')
또는
$('select#sel')[0].selectedIndex = 0
6. 값:
$( 'select#sel option:last).attr('selected','true')
7. 인덱스 값을 기반으로 선택한 값으로 옵션을 설정합니다:
$(' select#sel')[0]. selectedIndex = 인덱스 값 = 0,1,2....
8. 선택한 값으로 Value=4를 설정합니다:
$('select #sel').attr('value', '4');
또는
$("select#sel option[value='4']").attr('selected', 'true') ;
9. 값 삭제=3 옵션:
$("select#sel option[value='3']").remove()
10. (" select#sel 옵션 ").eq(index value).remove(); index value=0,1,2....
세 번째 라디오를 삭제하려면:
$(" select#sel 옵션 ").eq(2).remove();
11. 첫 번째 옵션 삭제:
$(" select#sel option ").eq(0).remove();
또는
$("select#sel option:first").remove();
12. 마지막 옵션 삭제:
$("select#sel option:last").remove(); . 드롭다운 목록 삭제:
$("select#sel").remove()
14. 선택 후 옵션 추가:
$("select#sel").append("");
15. select 앞에 옵션을 추가합니다:
$("select#sel").prepend(" ");
16. 트래버스 옵션:
$(' select#sel option ').each(function (index, domEle) {
//코드 쓰기
});
체크박스
checkbox" id="ck2 " name="ck" vlaue="2" />

1. 단일 체크박스 선택 항목 가져오기(3가지 쓰기 방법):
$( "input:checkbox:checked" ).val()
또는
$("input:[type='checkbox']:checked").val()
또는
$(" input:[name='ck ']:checked").val();
2. 여러 개의 체크박스 선택 항목 가져오기:
$('input:checkbox').each(function() {
if ($(this) .attr('checked') ==true) {
alert($(this).val())
}
});
3. 첫 번째 체크박스를 선택한 값으로 설정합니다:
$('input:checkbox:first').attr("checked",'checked'); 'input:checkbox').eq(0).attr("checked",'true')
4. 마지막 체크박스를 선택한 값으로 설정합니다:
$('input:radio:last') . attr('checked', 'checked');
또는
$('input:radio:last').attr('checked', 'true')
5. 인덱스 값에서 체크박스는 선택된 값입니다:
$('input:checkbox).eq(index value).attr('checked', 'true'); .
또는
$('input:radio').slice(1,2).attr('checked', 'true')
6. 여러 확인란을 선택합니다.
첫 번째 체크박스와 동시에 2개의 체크박스:
$('input:radio').slice(0,2).attr('checked','true')
7. Value 값에 따라 선택된 값:
$("input:checkbox[value='1']").attr('checked','true')
8. :
$("input:checkbox [value='1']").remove()
9. 어떤 체크박스를 삭제하세요:
$("input:checkbox").eq(index value) .remove(); 인덱스 값= 0,1,2....
세 번째 체크박스를 삭제하려면:
$("input:checkbox").eq(2).remove(); 10. 확인란을 탐색합니다.
$('input:checkbox').each(function (index, domEle) {
//코드 작성
})
모두 선택
$('input:checkbox' ).each(function() {
$(this).attr('checked', true);
})
모두 선택 해제:
$ ('input:checkbox' ).each(function () {
$(this).attr('checked',false);
});
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿