Contents

Develop
2013.12.16 15:50

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

Views 9592 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
아래 글로벌 함수 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);



?

List of Articles
No. Category Subject Author Date Views
241 Develop [jsp] 페이지에 한글이 정상적으로 보이지 않을 때.. hooni 2013.04.23 8161
240 Develop [jsp][php] LDAP 프로그래밍.. file hooni 2003.04.23 7386
239 Develop [jsp][php] 간단한 강좌 자료.. file hooni 2003.04.23 8098
238 Develop [js] 2048 예쁘게 만들고 있는거.. ㅋㄷ secret hooni 2015.01.30 0
237 Develop [js] 2차 잉여.. (Quadratic reciprocity) 계산.. file hooni 2013.04.23 7075
236 Develop [js] ajax를 이용해 외부문서 불러오기.. hooni 2013.04.23 6794
235 Develop [js] AngularJS 란? file hooni 2015.11.26 883
234 Develop [js] AngularJS를 소개합니다. file hooni 2014.01.06 13012
233 Develop [js] Array.splice() 설명 hooni 2014.04.24 2999
232 Develop [js] Click button copy to clipboard hooni 2018.04.05 1167
» Develop [js] Closure를 이용해 캡슐화.. hooni 2013.12.16 9592
230 Develop [js] e.stopPropagation() VS e.preventDefault () file hooni 2015.04.14 808
Board Pagination Prev 1 ... 46 47 48 49 50 51 52 53 54 55 ... 71 Next
/ 71