======jQuery :first Selector====== * description : jQuery :first Selector * author : 오션 * email : shlim@repia.com * lastupdate : 2021-06-02 \\ ====The source of this article==== [[https://www.w3schools.com/jquery/sel_first.asp|jQuery :first Selector]]\\ ====Example==== 첫 번째 %%

%% 요소를 선택합니다.\\

This is the first paragraph.

This is the second paragraph.

This is the third paragraph.

=====Definition and Usage===== **%%:first%%** 선택자는 첫 번째 요소를 선택합니다.\\ \\ **Note:** 이 선택자는 단일 요소만 선택할 수 있습니다.\\ **%%:first-child%%** 선택자를 사용하여 둘 이상의 요소를 선택합니다 (각 부모요소에 대해 하나씩).\\ \\ 이것은 주로 다른 선택자와 함께 그룹의 첫 번째 요소를 선택하는 데 사용됩니다 (위의 예제에서와 같이).\\ \\ **Tip:** 그룹의 마지막 요소를 선택하려면, **%%:last%%8** 선택자를 사용하십시오.\\ =====Syntax===== $(":first") ====Example==== **%%:first%%**와 **%%:first-child%%**의 차이\\ **%%:first%%**와 **%%:first-child%%** 선택자 사이의 차이점을 보여줍니다.\\

The first paragraph in div

The second paragraph in div

The last paragraph in div


The first paragraph in another div

The second paragraph in another div

The third paragraph in another div

The last paragraph in another div

{{tag>오션 jQuery :first Selector}}