event.isImmediatePropagationStopped ()

· 8년 전 · 1571

event.isImmediatePropagationStopped ()


설명 : 이 이벤트 객체에서 event.stopImmediatePropagation ()이 호출되었는지 여부를 반환합니다.



예:

event.stopImmediatePropagation ()가 불려 갔는지 어떠했는지를 판정합니다.


<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8">

  <title>event.isImmediatePropagationStopped demo</title>

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

</head>

<body>

 

<button>click me</button>

<div id="stop-log"></div>

 

<script>

function immediatePropStopped( event ) {

  var msg = "";

  if ( event.isImmediatePropagationStopped() ) {

    msg = "called";

  } else {

    msg = "not called";

  }

  $( "#stop-log" ).append( "<div>" + msg + "</div>" );

}

 

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

  immediatePropStopped( event );

  event.stopImmediatePropagation();

  immediatePropStopped( event );

});

</script>

 

</body>

</html>

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

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 8년 전 조회 2,191
jQuery 8년 전 조회 2,156
jQuery 8년 전 조회 1,719
jQuery 8년 전 조회 1,796
jQuery 8년 전 조회 2,197
jQuery
[jQuery]
8년 전 조회 1,690
jQuery
[jQuery]
8년 전 조회 1,606
jQuery 8년 전 조회 2,418
jQuery 8년 전 조회 3,835
PHP 8년 전 조회 5,839
기타 8년 전 조회 2,179
기타 8년 전 조회 1,995
기타 8년 전 조회 2,271
jQuery 8년 전 조회 1,855
jQuery 8년 전 조회 1,572
jQuery 8년 전 조회 2,375
jQuery 8년 전 조회 2,042
jQuery
[jQuery]
8년 전 조회 1,828
jQuery 8년 전 조회 2,068
jQuery
[jQuery]
8년 전 조회 1,483
jQuery
[jQuery]
8년 전 조회 1,798
jQuery
[jQuery]
8년 전 조회 1,492
jQuery
[jQuery]
8년 전 조회 1,433
jQuery 8년 전 조회 1,689
jQuery 8년 전 조회 1,854
jQuery 8년 전 조회 1,801
jQuery 8년 전 조회 1,982
jQuery 8년 전 조회 1,713
jQuery 8년 전 조회 2,039
jQuery 8년 전 조회 2,165