EQ
-
[jQuery] 23. Filtering - jQuery 강좌 jQuery / CSEWeb/jQuery 2015. 6. 13. 11:28
jQuery Traversing - Filtering 1. Narrow Down The Search For Elements Filtering 메소드의 가장 기본적인 3 가지는 first(), last(), eq() 입니다. 2. jQuery first() Method first() 메소드는 선택된 요소의 첫번째 요소를 반환합니다. 12345678910111213141516171819202122232425262728293031$(document).ready(function(){ $("div p").first().css("background-color", "yellow");}); Welcome to My Homepage This is the first paragraph in body. This is the ..