jQuery w3schools 한글판 강좌12 - jQuery Selectors - The #id Selector 정보
jQuery jQuery w3schools 한글판 강좌12 - jQuery Selectors - The #id Selector본문
The #id 선택자(selector)
jQuery #id 선택자는 HTML 태그의 id 특성(attribute)을 이용하여 특정 요소를 찾으며,
id 는 한페이지내에서 유일해야만 하기 때문에, 유일한, 여러분이 단일 요소를 찾기 원할때면 #id selector 를 이용해야만 합니다.
특정id를 가지고 있는 요소를 찾으려면, 다음처럼 해쉬문자를 적고, 그 뒤에 HTML요소의 id를 적으셔야 합니다 :
$("#test")
Example
유저가 버튼을 클릭하면 , 다음처럼 id="test"를 가진 요소는 사라질것 입니다 :
Example
$(document).ready(function(){
$("button").click(function(){
$("#test").hide();
});
});
추천
0
0
댓글 0개