Contents

Develop
2013.12.16 15:50

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

조회 수 9596 댓글 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. [js] Javascript로 만든 포트리스 (2010)

  2. [js] IE에서 인쇄 설정 팁

  3. [js] get방식, url이후 모두 그대로 읽어오기..

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

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

  6. [js] Click button copy to clipboard

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

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

  9. [js] AngularJS 란?

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

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

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

Board Pagination Prev 1 ... 37 38 39 40 41 42 43 44 45 46 ... 98 Next
/ 98