수

jQuery ( ": first-of-type")

· 2017-09-26 (화) 22:45:26 · 1970

jQuery ( ": first-of-type")


설명 : 동일한 요소 이름의 형제 중 첫 번째 요소를 모두 선택합니다.


:first-of-type선택은 같은 부모와 문서 트리에 전에 오는 같은 요소 이름 모두 다른 요소가없는 요소를 일치합니다.


예:

일치하는 각 div에서 첫 번째 범위를 찾아 클래스를 추가하십시오.


<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8">

  <title>first-of-type demo</title>

  <style>

  span.fot {

    color: red;

    font-size: 120%;

    font-style: italic;

  }

  </style>

  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>

</head>

<body>

 

<div>

  <span>Corey,</span>

  <span>Yehuda,</span>

  <span>Adam,</span>

  <span>Todd</span>

</div>

<div>

  <b>Nobody,</b>

  <span>Jörn,</span>

  <span>Scott,</span>

  <span>Timo</span>

</div>

 

<script>

$( "span:first-of-type" ).addClass( "fot" );

</script>

 

</body>

</html>

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 17-10-11 조회 2,457
jQuery 17-10-11 조회 1,910
jQuery 17-10-11 조회 2,030
jQuery 17-09-29 조회 2,250
jQuery 17-09-29 조회 2,498
jQuery 17-09-29 조회 2,036
jQuery 17-09-26 조회 1,971
jQuery 17-09-26 조회 2,045
jQuery
[jQuery]
17-09-26 조회 1,815
jQuery 17-09-22 조회 2,064
jQuery 17-09-22 조회 2,119
jQuery 17-09-22 조회 2,101
jQuery 17-09-21 조회 2,286
jQuery 17-09-21 조회 2,235
jQuery 17-09-21 조회 2,103
jQuery 17-09-19 조회 2,160
jQuery 17-09-19 조회 1,909
jQuery
[jQuery]
17-09-19 조회 1,900
jQuery
[jQuery]
17-09-18 조회 2,080
jQuery 17-09-18 조회 1,990
jQuery 17-09-18 조회 1,682
jQuery 17-09-14 조회 2,097
jQuery 17-09-14 조회 1,792
jQuery 17-09-14 조회 2,040
jQuery 17-09-11 조회 2,431
jQuery 17-09-11 조회 2,468
jQuery 17-09-11 조회 1,981
jQuery 17-09-10 조회 2,049
jQuery 17-09-10 조회 2,482
jQuery
[jQuery]
17-09-10 조회 1,939