기본 필터 선택자
Last updated
Was this helpful?
Last updated
Was this helpful?
$("li:eq(4)").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f", color: "#fff"}); //순서(0부터 시작하여 0-1-2-3-4-⑤)
$("li:gt(4)").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f", color: "#fff"}); //선택된 것 이하 (자식 모두 해당)
$("li:lt(4)").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f", color: "#fff"}); //선택된 것 이상
$(":header").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f", color: "#fff"}); //제목
$("li:first").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f", color: "#fff"}); //첫번째
$("li:last").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f", color: "#fff"}); //마지막
$("li:odd").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f", color: "#fff"}); //짝수
$("li:even").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f", color: "#fff"}); //홀수