event.isImmediatePropagationStopped ()

· 2017-09-07 (목) 11:20:23 · 1848

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>

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

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
jQuery
[jQuery]
17-09-09 조회 1,863
jQuery 17-09-09 조회 2,684
jQuery 17-09-09 조회 4,079
PHP 17-09-08 조회 6,131
기타 17-09-08 조회 2,418
기타 17-09-08 조회 2,235
기타 17-09-08 조회 2,528
jQuery 17-09-07 조회 2,138
jQuery 17-09-07 조회 1,849
jQuery 17-09-07 조회 2,642
jQuery 17-09-06 조회 2,331
jQuery
[jQuery]
17-09-06 조회 2,088
jQuery 17-09-06 조회 2,374
jQuery
[jQuery]
17-09-05 조회 1,776
jQuery
[jQuery]
17-09-05 조회 2,056
jQuery
[jQuery]
17-09-05 조회 1,746
jQuery
[jQuery]
17-09-02 조회 1,684
jQuery 17-09-02 조회 1,991
jQuery 17-09-02 조회 2,094
jQuery 17-09-01 조회 2,088
jQuery 17-09-01 조회 2,234
jQuery 17-09-01 조회 1,971
jQuery 17-08-31 조회 2,328
jQuery 17-08-31 조회 2,440
jQuery 17-08-31 조회 1,873
PHP 17-08-31 조회 3,291
jQuery 17-08-29 조회 1,875
jQuery 17-08-29 조회 2,061
jQuery 17-08-29 조회 2,142
jQuery 17-08-27 조회 2,003