자식 요소 필터 선택자
Last updated
Was this helpful?
Last updated
Was this helpful?
//자식 요소 필터 선택자
$("li:first").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:first-child").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:last").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:last-child").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:nth-child(4)").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:nth-child(2n+1)").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:nth-child(odd)").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:nth-child(even)").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:only-child").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});