Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter01 : jQuery_into 본문

WEB.JQUERY

chapter01 : jQuery_into

GAWON 2023. 5. 22. 09:20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<!-- 1. 오프라인에 제이쿼리.js 파일 추가 -->
<script src="js/jquery-3.4.1.js"></script>
<!-- 2. 온라인 CDN 이용 -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript">
/*
	jQuery 형식
	$(선택자).action();
	$ 기호 : jQuery를 정의하고 jQuery를 호출하여 사용할 수 있다.
	선택자 : HTML 요소를 찾는 역할
	action() : 선택된 요소가 행하는 동작
	
	1. 자바 스크립트 페이지 로드 이벤트
	onload = function(){}
	
	2. 제이쿼리 페이지 로드 이벤트
		1) $(document).ready(function(){});
		2) $().ready(function(){});
		3) $(function(){});		--> 보통 많이 사용하는 형태
 */


 	$(function(){
 		alert("안녕하세요");
 	});
 
 
</script>
</head>
<body>

</body>
</html>

'WEB.JQUERY' 카테고리의 다른 글

chapter02 : jQuery_selector  (0) 2023.05.22
chapter03 : jQuery_selector  (0) 2023.05.22
chapter04 : jQuery_mouse_event  (0) 2023.05.22
chapter05 : jQuery_keyboard_evnet  (0) 2023.05.22