======jQuery #id Selector====== * description : jQuery #id Selector * author : 오션 * email : shlim@repia.com * lastupdate : 2021-06-02 \\ ====The source of this article==== [[https://www.w3schools.com/jquery/sel_id.asp|jQuery #id Selector]]\\ ====Example==== id "intro"가 있는 요소를 선택합니다.\\

Welcometo My Homepage

My name is Donald.

I live in Duckburg

=====Definition and Usage===== %%#id%% 선택자는 특정 %%id%%를 가진 요소를 선택합니다.\\ \\ %%id%%는 %%HTML%% 요소의 %%id%% 속성(attribute)을 나타냅니다.\\ \\ **Note:** %%id%% 속성은 문서 내에서 하나(unique)이어야 합니다.\\ \\ **Note:** %%id%% 속성을 숫자로 시작하지 마십시오. 일부 브라우저에서는 문제가 발생할 수 있습니다.\\ =====Syntax===== $("#id") ^ Parameter ^ Description ^ | id | 필수입니다. 선택한 요소의 %%id%%를 지정합니다. | {{tag>오션 jQuery #id Selector}}