본문 바로가기
프로그래밍/jQuery

jQuery API 정복 - 마지막 요소 찾기, last()

by zoo10 2011. 5. 31.

.last()

원문 링크 http://api.jquery.com/last/

.last()Returns : jQuery

개요 : 선택된 요소 집합에서 마지막 요소를 선택하게 해주는 함수입니다.

  • .last()

아래 마크업을 예로 들겠습니다.

<ul>
  <li>list item 1</li>
  <li>list item 2</li>
  <li>list item 3</li>
  <li>list item 4</li>
  <li>list item 5</li>
</ul>

위와같이 리스트를 구성하는 html 이 있다고 하고 아래 스크립트를 적용해 보겠습니다.

list item 5의 배경색이 빨간색이 됩니다. 참 쉽죠~

$('li').last().css('background-color', 'red');

예 제  
p 태그안의 마지막 span 태그를 찾아 강조효과를 줍니다.

<!DOCTYPE html>
<html>
<head>
  <style>.highlight{background-color: yellow}</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <p><span>Look:</span> <span>This is some text in a paragraph.</span> <span>This is a note about it.</span></p>
<script>$("p span").last().addClass('highlight');</script>

</body>
</html>

미리보기

와우 너무 직관적이라 따로 드릴 말씀이 없습니다.

 

혹시 눈치채신 분들 계실라나? 하하; .first() 함수를 고대로 복사해 온건데 ㅎㅎ;;

그럼 즐프하세요.

※ 본 예제는 http://www.jquery.com 에 있는 내용임을 밝힙니다.