테스트 사이트 - 개발 중인 베타 버전입니다

event.namespace

· 8년 전 · 2197

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>

댓글 작성

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

로그인하기

게시글 목록

번호 제목
16286
16281
16277
16276
16268
16266
16264
16263
16262
16259
16258
16257
16255
16233
16229
16222
16220
16219
16217
16214
16213
16211
16207
16205
16197
16195
16192
16191
16188
16187