테스트 사이트 - 개발 중인 베타 버전입니다

event.result

· 8년 전 · 1523

event.result


설명 : 값이 아닌 경우이 이벤트에 의해 트리거 된 이벤트 핸들러에서 반환 한 마지막 값 undefined입니다.


이 속성은 사용자 지정 이벤트의 이전 반환 값을 가져 오는 데 유용 할 수 있습니다.


예:

이전 핸들러의 리턴 값 표시


<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8">

  <title>event.result demo</title>

  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>

</head>

<body>

 

<button>display event.result</button>

<p></p>

 

<script>

$( "button" ).click(function( event ) {

  return "hey";

});

$( "button" ).click(function( event ) {

  $( "p" ).html( event.result );

});

</script>

 

</body>

</html>

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

게시글 목록

번호 제목
15935
15934
jQuery .first()
15933
15932
15931
15930
15929
15928
15924
15923
15922
15921
15920
15919
15917
15916
15915
15914
15913
15912
15911
15910
15909
15908
15907
15906
15901
15900
15899
15898