카테고리 없음
Jquery
Canyi
2022. 11. 3. 10:16
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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<script>
$(document).ready(function () {
$("#msgid").html("This is hello World by Jquery").css('background-color','red');
})
</script>
this is my hell world by HTML
<div id="msgid"></div>
</body>
</html>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
항상 최신 버전을 cdn 방식으로 가져옴
체인 method 예시
https://piaocanyi.tistory.com/265
JS vs Jquery 선택자 핸들링
JS로 짤 경우 별 하나의 사랑과 별 하나의 추억과 별 하나의 사랑과 별 하나의 추억과 별 하나의 사랑과 별 하나의 추억과 아이디 클래스 Jquery 로적용할 경우 별 하나의 사랑과 별 하나의 추억과
piaocanyi.tistory.com