Development

[JavaScript] JQuery 사용하기

개발자 강정 2021. 12. 29. 18:46

JQuery는 미리 작성된 JavaScript 같은 개념이다. 이를 import 해서 JavaScript 코드를 더 간결하게 작성할 수 있다.

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

 

jQuery Get Started

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com

위 링크에서 코드를 복사하여 <head> 안에 붙여넣기 한다.

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>