var obj = {fun1 : function(){}, // 비어있는 함수fun2 : $.noop // jQuery에서 제공하는 빈함수 결과는 위와 같다. ( no-op : 조종 불능의.. )}console.log(obj.fun1); // function (){ }console.log(obj.fun2); // function (){ }
반응형
'jQuery' 카테고리의 다른 글
[jQuery] event.namespaces - 이벤트 네임스페이스로 이벤트 구분 (0) | 2016.01.14 |
---|---|
[jQuery] on() - 동적 추가 요소 이벤트 적용 (0) | 2016.01.13 |
[jQuery] $.makeArray - jQuery 확장집합을 배열로 변환 (0) | 2015.11.30 |
[jQuery] $.param(), serialize(), serializeArray(), JSON.stringify(), JSON.parse() (1) | 2015.11.10 |
[jQuery] CSS 트랜지션 완료 이벤트 감지하기 ( jQuery transition complete callbacks ) (0) | 2015.10.13 |