"JQuery .last()"의 두 판 사이의 차이

(새 문서: {{소문자}} ==개요== ;.last() *집합에서 마지막 요소를 선택하는 메소드 *<code>.eq(-1)</code>과 동일한 효과<ref>내부적으로도 <code>.eq(-1)</code>으로...)
 
잔글 (로봇: 자동으로 텍스트 교체 (-http://zetawiki.com/jq/ +http://zetawiki.com/ex/jquery/))
6번째 줄: 6번째 줄:


==예시==
==예시==
*예제: http://zetawiki.com/jq/last.html
*예제: http://zetawiki.com/ex/jquery/last.html
<source lang='html5'>
<source lang='html5'>
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/jquery.min.js"></script>

2015년 7월 15일 (수) 00:51 판

1 개요

.last()
  • 집합에서 마지막 요소를 선택하는 메소드
  • .eq(-1)과 동일한 효과[1]

2 예시

<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(function() {
	$("li").last().css("color", "red");
});
</script>

<ul>
  <li>한놈</li>
  <li>두시기</li>
  <li>석삼</li>
</ul>

3 같이 보기

4 주석

  1. 내부적으로도 .eq(-1)으로 구현되어 있다고 함. ( ISBN 978-89-962765-5-5 p.33 )

5 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}