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

42번째 줄: 42번째 줄:
</source>
</source>
<jsfiddle>47643v7t</jsfiddle>
<jsfiddle>47643v7t</jsfiddle>
==예시 3: 스코프 적용==
*<code>function ( $ ) {</code>와 <code>}( jQuery ));</code> 사이에 넣어 스코프 형성
<source lang='html5'>
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
(function ( $ ) {
    $.fn.redify = function() {
        this.css( "color", "red" );
        return this;
    };
}( jQuery ));
$(function() {
    $('#greet').redify();
});
</script>
<div id='greet'>안녕</div>
</source>


==같이 보기==
==같이 보기==

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

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 ( $ ) {
    $.fn.redify = function() {
        this.css( "color", "red" );
        return this;
    };
}( jQuery ));

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

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

4 같이 보기

5 참고 자료

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