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

(새 문서: {{소문자}} ==개요== ;.first() *집합에서 첫번째 요소를 선택하는 메소드 *<code>.eq(0)</code>와 동일함 ==예시== *예제: http://zetawiki.com/jq/first.html <s...)
 
잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(사용자 2명의 중간 판 7개는 보이지 않습니다)
1번째 줄: 1번째 줄:
{{다른뜻|함수 first()}}
{{소문자}}
{{소문자}}
==개요==
==개요==
;.first()
;.first()
*집합에서 첫번째 요소를 선택하는 메소드
*집합에서 첫번째 요소를 선택하는 메소드
*<code>.eq(0)</code>와 동일함
*<code>.eq(0)</code>와 동일한 효과<ref>내부적으로도 <code>.eq(0)</code>으로 구현되어 있다고 함.  ( ISBN 978-89-962765-5-5 p.33 )</ref>


==예시==
==예시==
*예제: http://zetawiki.com/jq/first.html
*예제: http://zetawiki.com/ex/jquery/first.html
<source lang='html5'>
<syntaxhighlight lang='html5'>
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
<script>
20번째 줄: 21번째 줄:
   <li>석삼</li>
   <li>석삼</li>
</ul>
</ul>
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
26번째 줄: 27번째 줄:
*[[jQuery .eq()]]
*[[jQuery .eq()]]


==참고 자료==
==주석==
<references/>
 
==참고==
*https://api.jquery.com/first/
*https://api.jquery.com/first/


[[분류: jQuery]]
[[분류: jQuery]]

2020년 11월 2일 (월) 02:53 기준 최신판

  다른 뜻에 대해서는 함수 first() 문서를 참조하십시오.

1 개요[ | ]

.first()
  • 집합에서 첫번째 요소를 선택하는 메소드
  • .eq(0)와 동일한 효과[1]

2 예시[ | ]

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

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

3 같이 보기[ | ]

4 주석[ | ]

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

5 참고[ | ]

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