기본 필터 선택자
Last updated
Was this helpful?
Last updated
Was this helpful?
//기본 필터 선택자
$("li:eq(4)").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:gt(4)").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:lt(4)").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$(":header").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:first").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:last").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:odd").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});
$("li:even").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});