TIL

[Today I Learn] 2022.05.23

728x90
반응형

TIL

5/19 날아가버린 TIL

  • html() : 태그를 포함하는 부분
    text() : 태그가 포함되지 않은 텍스트 부분
    remove() : 한 개의 객체만 지움
    empty() : 태그 내의 모든 태그 제거 
    append() : 태그 내에 요소 삽입

jQuery

  • $(selector).method(function(event) { });
  • event : click, dbclick, mousedown, mouseup, mouseenter, mouseleave, mousemove, mouseout, mouseover가 있다
  • focus() : 커서가 들어갈 때 실행
    blur() : 커서가 빠져나올 때 실행
  • prop() : 선언만 되면 되는 속성(checked 등)에서 속성을 껐다 켰다 할 수 있음
  • <button onclick = "return false;"> 
    <form action onsubmit="return false;">
    버튼을 클릭해도 동작하지 않도록 설정
  • find() : 해당 태그 내의 자식태그를 검색해서 찾는 방법 

 

 

What I did

  1. jQuery 학습
  2. 개인 프로젝트 : 회원가입, 로그인

Memo

  • 손흥민 득점왕, 골든부츠상 수상! 잠결이라도 골장면을 라이브로 봐서 행복

 

 

 

 

'TIL' 카테고리의 다른 글

[Today I Learn] 2022.05.26  (0) 2022.05.27
[Today I Learn] 2022.05.24  (0) 2022.05.24
[Today I Learn] 2022.05.19  (0) 2022.05.20
[Today I Learn] 2022.05.18  (0) 2022.05.19
[Today I Learn] 2022.05.16  (0) 2022.05.17