jqery 학습 의 세 가지 선택 기 서브 요소 와 폼

:nth-child(index/even/odd/equation)
부모 요소 의 N 번 째 키 나 패 리 티 요소 와 일치 합 니 다.
':eq(index)'는 하나의 요소 만 일치 합 니 다.이것 은 모든 부모 요소 에 하위 요소 와 일치 합 니 다.:nth-child 는 1 부터 시작 합 니 다.eq()는 0 부터 계산 합 니 다!
사용 가능:nth-child(even):nth-child(odd):nth-child(3n):nth-child(2):nth-child(3n+1):nth-child(3n+2)
Matches the nth-child of its parent.
While ':eq(index)' matches only a single element, this matches more then one: One for each parent. The specified index is one-indexed, in contrast to :eq() which starst at zero.
반환 값
Array
매개 변수
index(Number):요소 의 번호 와 일치 하려 면 1 부터 시작 합 니 다.
예시
얼 마다 두 번 째 li 찾기
HTML 코드:
     
  • John
  •  
  • Karl
  •  
  • Brandon
     
  • Glen
  •  
  • Tane
  •  
  • Ralph

jQuery 코드:
$("ul li:nth-child(2)")
결과:
[
  • Karl
  • ,  
  • Tane
  • ]--------------------------------------------------------------------------------
    :first-child
    첫 번 째 하위 요소 일치
    ':first'는 하나의 요소 만 일치 합 니 다.이 선택 자 는 부모 요소 마다 키 요소 와 일치 합 니 다.
    Matches the first child of its parent.
    While ':first' matches only a single element, this matches more then one: One for each parent.
    반환 값
    Array
    예시
    모든 l 에서 첫 번 째 li 찾기
    HTML 코드:
       
    • John
    •  
    • Karl
    •  
    • Brandon
       
    • Glen
    •  
    • Tane
    •  
    • Ralph

    jQuery 코드:
    $("ul li:first-child")
    결과:
    [
  • John
  • ,
  • Glen
  • ] --------------------------------------------------------------------------------
    :last-child
    마지막 하위 요소 일치
    ':last'는 하나의 요소 만 일치 합 니 다.이 선택 자 는 부모 요소 마다 키 요소 와 일치 합 니 다.
    Matches the last child of its parent.
    While ':last' matches only a single element, this matches more then one: One for each parent.
    반환 값
    Array
    예시
    모든 l 에서 마지막 li 찾기
    HTML 코드:
       
    • John
    •  
    • Karl
    •  
    • Brandon
       
    • Glen
    •  
    • Tane
    •  
    • Ralph

    jQuery 코드:
    $("ul li:last-child")
    결과:
    [
  • Brandon
  • ,
  • Ralph
  • ] --------------------------------------------------------------------------------
    :only-child
    만약 어떤 원소 가 부모 원소 중의 유일한 하위 원소 라면,일치 합 니 다
    부모 요소 에 다른 요 소 를 포함 하고 있다 면 일치 하지 않 을 것 입 니 다.
    Matches the only child of its parent.
    If the parent has other child elements, nothing is matched.
    반환 값
    Array
    예시
    얼 에서 유일한 하위 요소 인 li 를 찾 습 니 다.
    HTML 코드:
       
    • John
    •  
    • Karl
    •  
    • Brandon
       
    • Glen
    • jQuery 코드:
      $("ul li:only-child")
      결과:
      [
    • Glen
    • ] --------------------------------------------------------------------------------
      :input
      모든 input,textarea,select,button 요소 와 일치 합 니 다.
      Matches all input, textarea, select and button elements.
      반환 값
      Array
      예시
      모든 input 요소 찾기
      HTML 코드:
                             

      jQuery 코드:
      $(":input")
      결과:
      [ , , , , , , , , ] --------------------------------------------------------------------------------
      :text
      모든 줄 텍스트 상자 일치
      Matches all input elements of type text.
      반환 값
      Array
      예시
      모든 텍스트 상자 찾기
      HTML 코드:
                             

      jQuery 코드:
      $(":text")
      결과:
      [ ] --------------------------------------------------------------------------------
      :password
      모든 암호 상자 일치
      Matches all input elements of type password.
      반환 값
      Array
      예시
      모든 암호 상자 찾기
      HTML 코드:
                             

      jQuery 코드:
      $(":password")
      결과:
      [ ] --------------------------------------------------------------------------------
      :radio
      모든 체크 단추 일치
      Matches all input elements of type radio.
      반환 값
      Array
      예시
      모든 체크 단추 찾기
      HTML 코드:
                             

      jQuery 코드:
      $(":radio")
      결과:
      [ ] --------------------------------------------------------------------------------
      :submit
      모든 제출 단추 일치
      Matches all input elements of type submit.
      반환 값
      Array
      예시
      모든 제출 버튼 찾기
      HTML 코드:
                             

      jQuery 코드:
      $(":submit")
      결과:
      []다른 건 다 똑 같 아 요.image.   ,:reset,:button,:file,:hidden !@#@!%$%

    좋은 웹페이지 즐겨찾기