event.isImmediatePropagationStopped ()

· 8년 전 · 1387

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,024
jQuery 8년 전 조회 1,994
jQuery 8년 전 조회 1,568
jQuery 8년 전 조회 1,627
jQuery 8년 전 조회 2,021
jQuery
[jQuery]
8년 전 조회 1,524
jQuery
[jQuery]
8년 전 조회 1,439
jQuery 8년 전 조회 2,242
jQuery 8년 전 조회 3,670
PHP 8년 전 조회 5,642
기타 8년 전 조회 2,004
기타 8년 전 조회 1,823
기타 8년 전 조회 2,109
jQuery 8년 전 조회 1,713
jQuery 8년 전 조회 1,388
jQuery 8년 전 조회 2,205
jQuery 8년 전 조회 1,889
jQuery
[jQuery]
8년 전 조회 1,665
jQuery 8년 전 조회 1,968
jQuery
[jQuery]
8년 전 조회 1,323
jQuery
[jQuery]
8년 전 조회 1,633
jQuery
[jQuery]
8년 전 조회 1,328
jQuery
[jQuery]
8년 전 조회 1,296
jQuery 8년 전 조회 1,522
jQuery 8년 전 조회 1,679
jQuery 8년 전 조회 1,647
jQuery 8년 전 조회 1,803
jQuery 8년 전 조회 1,557
jQuery 8년 전 조회 1,872
jQuery 8년 전 조회 2,013
🐛 버그신고