Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Tags more
Archives
Today
Total
관리 메뉴

개발합니다

[jQuery] jQuery란?, wrapper 본문

Web/JavaScript

[jQuery] jQuery란?, wrapper

돈기법 2022. 3. 28. 17:04

[jQuery]

웹사이트에 자바스크립트를 쉽게 활용할 수 있도록 도와주는 오픈소스 기반의 자바스크립트 라이브러리.

 

- jQuery API Documentation
https://api.jquery.com/

 

jQuery API Documentation

jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. If you're new t

api.jquery.com

 

 

[wrapper]

인자로 전달된 요소들에 jQuery의 기능성을 부여해서 반환한다.

 

$와 jQuery는 같은 의미이다.

$를 사용하는 다른 라이브러리들과 충돌이 일어날 수 있기 때문에 안전하게 사용하는 법이 필요하다.

<script type="text/javascript">
    //$ 대신 jQuery를 사용
    jQuery('body').html('hello world');
</script>

 

<script type="text/javascript">
    //$를 함수의 지역변수로 선언해서 외부에 있을지 모르는 타 라이브러리의 $와의 충돌을 예방
    (function($){
        $('body').html('hello world');
    })(jQuery)
</script>

 

'Web > JavaScript' 카테고리의 다른 글

[jQuery] 폼이란? (Forms)  (0) 2022.03.28
[jQuery] 엘리먼트 제어 (Manipulation)  (0) 2022.03.28
[jQuery] Event란?  (0) 2022.03.28
[jQuery] Chain이란?  (0) 2022.03.28
[jQuery] 선택자 (Selectors)  (0) 2022.03.28