🖋️
JQuery
  • 제이쿼리
  • 제이쿼리 기본
  • 선택자
    • 기본 선택자
    • 계층 선택자
    • 속성 선택자
    • 기본 필터 선택자
    • 내용 필터 선택자
    • 보임 필터 선택자
    • 자식 요소 필터 선택자
    • 폼 요소 필터 선택자
  • 탐색
    • .find()/filter()
    • each()/$.each()
  • 속성
    • addClass() / removeClass()
    • toggleClass()
    • hasClass()
    • attr()/removeAttr()
    • position()/offset()
    • scrollTop()/scrollLeft()
  • 변경
    • text()/html()
    • append()/prepend()
    • remove() / empty()
  • 애니메이션
    • show()/hide()
    • fadeIn() /fadeOut()
    • slideUp()/slideDown()
    • animate()
  • 이벤트
Powered by GitBook
On this page

Was this helpful?

  1. 선택자

기본 선택자

Previous선택자Next계층 선택자

Last updated 4 years ago

Was this helpful?

기본 선택자

$("li").css({backgroundColor:"#BBDEFB", border:"1px dashed #303F9F"}); //모든 li 선택, 태그 선택자
$(".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"}); //그룹 선택자