위의 예에서는 jquery.fn.extend() 메서드를 호출하여 jquery 개체 메서드를 만들 수 있습니다. 구체적인 코드는 다음과 같습니다》
jQuery. fn.extend({
테스트 : 함수(){
return this.each(function(){
alert(this.nodeName);
})
}
}) ;
호출은 위와 같습니다
$(' body *').click(function(){
$(this).test().html(this.nodeName).hide(1000);
});
지금까지 jquery 플러그인을 작성하는 두 가지 방법인 jquery.extend()와 jquery.fn.extend()에 대해 알아보았습니다.