JQuery 플러그인 만들기

Jmnote (토론 | 기여)님의 2015년 8월 4일 (화) 15:42 판 (→‎예시)
How to Create a jQuery Plugin
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: 체인

<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 참고 자료

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