128june

[JavaScript] jQuery 사용하기 ( jQuery 링크 ) 본문

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

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>
반응형

'HTML & JavaScript' 카테고리의 다른 글

[Javascript] 5회 인증 검토 기능  (0) 2023.09.04
[JavaScript] .append() 함수  (0) 2020.06.26
[JavaScript] .html() 함수  (0) 2020.06.26
Comments