기본 선택자
Last updated
Was this helpful?
Last updated
Was this helpful?
$(".list").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});//문자열이 아닌건 ""을 빼도 된다.
$("li").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});//태그선택자
$(".list4").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});//클래스 선택자
$("#list").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});//아이디 선택자
$("*").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});//전체 선택자
$(".list4, .list8, list9").css({backgroundColor:"#bbdefb", border:"1px dashed #303f9f"});//그룹선택자