WEB/jQuery

jQuery Event

p3chaeyeon 2024. 8. 28. 20:57

jQuery 이벤트 정의

$(function() { $("셀렉터").이벤트이름(function() { ... 처리 내용 ... }); });

 

 

key Event

1. event.keyCode

  • JavaScript에서 event.keyCode 를 하면 각 키보드에 해당하는 고유번호를 알 수 있다
  • 이 메소드가 jQuery에서는 event.which 으로 사용하게 된다
  •  .keydown, .keyup - 대소문자 구별X (A도 a도 65라고 나온다)

 

 

2. .keypress

  • 대소문자 구별 가능
  • Ctrl, Shift, Alt 구별 불가능

 

⚒️ 예제

// jQuery\webapp\02_jQueryEvent [ event.css 공통] 
exam01.html
member.js
회원가입
exam02.html 마우스 이벤트 확인하기
exam03.html 클릭 이벤트 확인하기
exam04.html Hover 이벤트 확인하기
exam05.html Key 이벤트 확인하기
exam06.html Key Event 확인하기 2
exam07.html Key 이벤트 확인하기 3
exam08.html focus/blur 이벤트 확인하기
exam09.html Change 이벤트 확인하기
exam10.html
form_ok.html
회원가입
exam11.html  크기 조절 이벤트
exam12.html 스크롤 이벤트
exam13.html this 의 사용

 


 

JSON

JSON 객체
{
	변수: 값;
}

JSON 객체 배열
{
	{변수: 값, 변수: 값, … }
	{변수: 값, 변수: 값, … }
	...
}