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);



?

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

    Date2013.04.23 CategoryDevelop Byhooni Views8161
    Read More
  2. [jsp][php] LDAP 프로그래밍..

    Date2003.04.23 CategoryDevelop Byhooni Views7386
    Read More
  3. [jsp][php] 간단한 강좌 자료..

    Date2003.04.23 CategoryDevelop Byhooni Views8098
    Read More
  4. [js] 2048 예쁘게 만들고 있는거.. ㅋㄷ

    Date2015.01.30 CategoryDevelop Byhooni Views0
    Read More
  5. [js] 2차 잉여.. (Quadratic reciprocity) 계산..

    Date2013.04.23 CategoryDevelop Byhooni Views7075
    Read More
  6. [js] ajax를 이용해 외부문서 불러오기..

    Date2013.04.23 CategoryDevelop Byhooni Views6794
    Read More
  7. [js] AngularJS 란?

    Date2015.11.26 CategoryDevelop Byhooni Views883
    Read More
  8. [js] AngularJS를 소개합니다.

    Date2014.01.06 CategoryDevelop Byhooni Views13012
    Read More
  9. [js] Array.splice() 설명

    Date2014.04.24 CategoryDevelop Byhooni Views2999
    Read More
  10. [js] Click button copy to clipboard

    Date2018.04.05 CategoryDevelop Byhooni Views1167
    Read More
  11. [js] Closure를 이용해 캡슐화..

    Date2013.12.16 CategoryDevelop Byhooni Views9592
    Read More
  12. [js] e.stopPropagation() VS e.preventDefault ()

    Date2015.04.14 CategoryDevelop Byhooni Views808
    Read More
Board Pagination Prev 1 ... 46 47 48 49 50 51 52 53 54 55 ... 71 Next
/ 71