기본선택자
이번에는 <body> 영역에 있는 문서 객체를 선택할 수 있는 선택자를 살펴보겠습니다. 제이쿼리의 기본 선택자는 다음과 같이 직접선택자와 인접관계 선택자로 나눌 수 있습니다.
Last updated
Was this helpful?
이번에는 <body> 영역에 있는 문서 객체를 선택할 수 있는 선택자를 살펴보겠습니다. 제이쿼리의 기본 선택자는 다음과 같이 직접선택자와 인접관계 선택자로 나눌 수 있습니다.
Last updated
Was this helpful?
$("li").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"}); //태그 선택자
$(".list4").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"}); //클래스 선택자
$("#list1").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"}); //아이디 선택자
$("*").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"}); //전체 선택자
$(".list4, .list8, .list9").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"}); //그룹 선택자