event.namespace 정보
jQuery event.namespace본문
event.namespace
설명 : 이벤트가 트리거되었을 때 지정된 네임 스페이스입니다.
이것은 주로 사용 된 이벤트 네임 스페이스에 따라 다르게 작업을 처리하고자하는 플러그인 작성자가 주로 사용합니다.
예:
사용 된 이벤트 네임 스페이스를 결정하십시오.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>event.namespace demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<button>display event.namespace</button>
<p></p>
<script>
$( "p" ).on( "test.something", function( event ) {
alert( event.namespace );
});
$( "button" ).click(function( event ) {
$( "p" ).trigger( "test.something" );
});
</script>
</body>
</html>
추천
0
0
댓글 0개