event.isPropagationStopped () 정보
jQuery event.isPropagationStopped ()본문
event.isPropagationStopped ()
설명 : 이 이벤트 객체에서 event.stopPropagation () 이 호출 되었는지 여부를 반환합니다 .
예:
event.stopPropagation ()가 불려 갔는지 여부를 확인합니다.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>event.isPropagationStopped 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 propStopped( event ) {
var msg = "";
if ( event.isPropagationStopped() ) {
msg = "called";
} else {
msg = "not called";
}
$( "#stop-log" ).append( "<div>" + msg + "</div>" );
}
$( "button" ).click(function(event) {
propStopped( event );
event.stopPropagation();
propStopped( event );
});
</script>
</body>
</html>
추천
0
0
댓글 0개