키보드 이벤트 > JQUERY

본문 바로가기
사이트 내 전체검색

JQUERY

키보드 이벤트

페이지 정보

profile_image
작성자 관리자
댓글 0건 조회 705회 작성일 21-07-20 10:53

본문

이벤트 종류

설명

keydown()

 키보드를 누를 때 이벤트가 발생한다.

keypress()

 keydown() 이벤트와 유사하지만, alt , ctrl , shift , esc와 같은 특수키는 이벤트가 발생하지 않는다.

keyup()

 키보드를 떼었을 때 이벤트가 발생한다.




ex)

<style>

body{

font-size: 12px;

}

textarea{

width: 300px;

height: 200px;

margin-bottom:10px;

}

textarea.on{

background: #ff6600;

color: #fff;

}

#display {

width: 298px;

height:100px;

word-break: break-all;

border: 1px solid blue;

overflow: auto;

}

</style>

    

<script>

$(document).ready(function(){

//1

$("textarea").keydown(function(){

$(this).addClass("on");

});

$("textarea").keyup(function(){

$("#display").text($(this).val());

});

//2. 위의 두개의 메소드 연결

/*

$("textarea").keydown(function(){

$(this).addClass("on");

}).keyup(function(){

$("#display").text($(this).val());

});

*/

});

</script>


<textarea></textarea>

<div id="display"></div>




[실행내용]

a70100287cc77d49a4792d7bcfd842cf_1626838169_0548.png
 

추천0 비추천0

댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

사이트 정보

공지사항
자유게시판
질문답변
1:1문의

 

별명 : 터푸가위
주소 : 부산시 동래구 명장로20번길 90
대표 : 박규태
메일 : dancepkt@******.com

접속자집계

오늘
199
어제
138
최대
10,760
전체
289,650
Copyright © dancePKT . All rights reserved.