HTML & JavaScript
[JavaScript] jQuery 사용하기 ( jQuery 링크 )
128june
2020. 7. 4. 12:34
반응형
- jQuery 태그
<script type="text/javascript" src="http://code.jquery.com/jquery-3.5.1.js"></script>
- jQuery 최신버전 확인 : https://jquery.com/
jQuery
What is jQuery? 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.
jquery.com
- 사용방법
<!DOCTYPE html>
<html>
<!-- 상단 부분에 삽입 -->
<script type="text/javascript" src="http://code.jquery.com/jquery-3.5.1.js"></script>
<head>
</head>
<body>
</body>
</html>
반응형