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>