"JQuery 플러그인 만들기"의 두 판 사이의 차이

44번째 줄: 44번째 줄:


==예시 3: 스코프 적용==
==예시 3: 스코프 적용==
*<code>function ( $ ) {</code>와 <code>}( jQuery ));</code> 사이에 넣어 스코프 형성
*<code>function ( $ ) {</code>와 <code>}( jQuery ));</code> 사이에 넣어 [[스코프]] 형성
*스코프 내에 플러그인용 환경설정변수 등을 사용하기에 용이함
<source lang='html5'>
<source lang='html5'>
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
<script>
(function ( $ ) {
(function ( $ ) {
   
    var my_red = '#f44336';
   
     $.fn.redify = function() {
     $.fn.redify = function() {
         this.css( "color", "red" );
         this.css( "color", my_red );
         return this;
         return this;
     };
     };

2015년 8월 4일 (화) 16:33 판

How to Create a jQuery Plugin
jQuery 플러그인 생성
jQuery 플러그인 만들기

1 예시 1: 기본형

<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$.fn.redify = function() {
    this.css( "color", "red" );
};

$(function() {
    $('#greet').redify();
});
</script>

<div id='greet'>안녕</div>

2 예시 2: 체인 적용

  • return this;를 추가하여 체인으로 사용가능하도록 함
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$.fn.redify = function() {
    this.css( "color", "red" );
    return this;
};
$.fn.greenBack = function() {
    this.css( "background", "green" );
    return this;
};

$(function() {
    $('#greet').redify().greenBack();
});
</script>

<div id='greet'>안녕</div>

3 예시 3: 스코프 적용

  • function ( $ ) {}( jQuery )); 사이에 넣어 스코프 형성
  • 스코프 내에 플러그인용 환경설정변수 등을 사용하기에 용이함
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
(function ( $ ) {
    
    var my_red = '#f44336';
    
    $.fn.redify = function() {
        this.css( "color", my_red );
        return this;
    };
}( jQuery ));

$(function() {
    $('#greet').redify();
});
</script>

<div id='greet'>안녕</div>

4 같이 보기

5 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}