Contents

Develop
2013.12.16 15:50

[js] Closure를 이용해 캡슐화..

조회 수 9590 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
아래 글로벌 함수 utility는 누구나 사용할 수 있는 함수
var utility = function(){
...
};

//window.jQuery = function(selector, context){
w.jQuery = function(selector, context){
    utility();
};

Closure를 이용하여 캡슐화
//(function(window, undefined){
(function(w, undefined){
    var utility = function(){
    };

    //window.jQuery = function(selector, context){
    w.jQuery = function(selector, context){
        utility();
    };

})(window);



?

  1. [jsp] 페이지에 한글이 정상적으로 보이지 않을 때..

  2. [jsp][php] LDAP 프로그래밍..

  3. [jsp][php] 간단한 강좌 자료..

  4. [js] 2048 예쁘게 만들고 있는거.. ㅋㄷ

  5. [js] 2차 잉여.. (Quadratic reciprocity) 계산..

  6. [js] ajax를 이용해 외부문서 불러오기..

  7. [js] AngularJS 란?

  8. [js] AngularJS를 소개합니다.

  9. [js] Array.splice() 설명

  10. [js] Click button copy to clipboard

  11. [js] Closure를 이용해 캡슐화..

  12. [js] e.stopPropagation() VS e.preventDefault ()

Board Pagination Prev 1 ... 46 47 48 49 50 51 52 53 54 55 ... 71 Next
/ 71