======jQuery :last Selector====== * description : jQuery :last Selector * author : 오션 * email : shlim@repia.com * lastupdate : 2021-06-02 \\ ====The source of this article==== [[https://www.w3schools.com/jquery/sel_last.asp|jQuery :last Selector]]\\ ====Example==== 마직막 %%

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

This is the first paragraph.

This is the second paragraph.

This is the last paragraph.

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

The first paragraph in div

The last paragraph in div


The first paragraph in another div

The last paragraph in another div

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