사용자 도구

사이트 도구


tag:id

TAG: #id

문서날짜사용자설명
2021/06/02 13:03 오션 jQuery #id Selector * description : jQuery #id Selector * author : 오션 * email : shlim@repia.com * lastupdate : 2021-06-02 The source of this article jQuery #id Selector Example id “intro”가 있는 요소를 선택합니다. <body> <h1>Welcometo My Homepage</h1> <p id="intro">My name is Donald.</p> <p>I live in Duckburg</p> <script> $(document).ready(function () { $('#intro').css('color', 'blue'); }); /* id "intro"가 있는 My name is Donald의 텍스트 컬러를 변경합니다. */ …