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

chapter02 : jQuery_selector 본문

WEB.JQUERY

chapter02 : jQuery_selector

GAWON 2023. 5. 22. 09:20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="js/jquery-3.4.1.js"></script>
<script type="text/javascript">
	$(function(){
		$("#idBtn").click(function(){
			$("#pa").hide();	// 요소 숨길 때
			//$("#pa").show();	// 요소 보여줄 때
		});
		// 클래스 숨기기 버튼 클릭 시  클래스 명이 "pb" 인 요소 숨기기
		$("#classBtn").click(function(){
			$(".pb").hide();
		});
		// 태그 숨기기 버튼 클릭 시 h2 태그 숨기기
		$("#tagBtn").click(function(){
			$("h2").hide();
		});
	});
</script>
</head>
<body>
	<h2>여기가 h 태그</h2>
	<p id="pa">여기가 p 태그</p>
	<p class="pb">여기가 또 다른 p 태그</p>
	<button id="idBtn">아이디 숨기기 버튼</button>
	<button id="classBtn">클래스 숨기기 버튼</button>
	<button id="tagBtn">태그 숨기기 버튼</button>
</body>
</html>

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

chapter01 : jQuery_into  (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