개발 구축 환경

jquery 설치

우롱차 2020. 9. 11. 19:12
728x90

vs code에 메타 아래에 복사 붙여넣기 하먼 댐

min을 지우고 ctrl + 클릭 하면 소스코드를 볼 수 있음 min이 있으면 데이터 낭비를 줄이고, 난독화를 시키기 위해서

https://www.w3schools.com/jquery/jquery_get_started.asp

 

jQuery Get Started

jQuery Get Started Adding jQuery to Your Web Pages There are several ways to start using jQuery on your web site. You can: Download the jQuery library from jQuery.com Include jQuery from a CDN, like Google Downloading jQuery There are two versions of jQuer

www.w3schools.com

여기에 구글 CDN위에 방법보다 훨씬 쉬운 w3school에 있움

<script src="https://code.jquery.com/jquery-latest.min.js"></script>

latest는 가장 최신버전인데 구버전에선 잘되던게 최신버전에서 잘안되는 경우들이 종종있으니 알아서 잘 확인하자잉?

728x90