본문 바로가기
javaScript/jQuery

jQuery 유틸리티

by mooyou 2023. 9. 25.
728x90
300x250
SMALL

jQuery 유틸리티는 jQuery 라이브러리의 일부로서, trim()메서드와 같이 웹 개발을 더 쉽게 하고 다양한 웹페이지 조작 및 상호 작용 작업을 단순화 하는 데 사용되는 다양한 기능 및 도구를 제공하는 함수와 메서드의 모음이다.

 

- 접근방법

jQuery.유틸리티();
//or
$.유틸리티();

jQuery 인스턴스를 생성하지 않고 위 와 같이 직접 접근해서 사용한다.

 

jQuery 기본 제공 유틸리티

https://api.jquery.com/category/utilities/

 

Utilities | jQuery API Documentation

Remove from the queue all items that have not yet been run. Execute the next function on the queue for the matched elements. States if the current page, in the user’s browser, is being rendered using the W3C CSS Box Model. Contains flags for the useragen

api.jquery.com

 

 

유틸리티 문법

(function($){
	$.유틸리티 = function(){ // 여기서 유틸리티는 jQuery 클래스 메서드이다.
    	//기능구현
    }
})(jQuery);

jQuery.유틸리티(); //사용하기

유틸리티가 제이쿼리의 클래스 메서드이기 때문에 클래스 인스턴스를 생성하지 않고 바로 접근해서 사용가능하다.

 

 

728x90
반응형
LIST

댓글