본문 바로가기

웹 프로그래밍/jQuery

[jQuery] jQuery 객체와 JS 객체의 구분

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="/Lecture-WEB/jquery/js/jquery-3.5.1.min.js"></script>
<script>
	$(document).ready(function() {
		alert('ready')
		//$('input:text').hide()
		//$('input:button').hide()
		//$(':button').hide()
		//$('button').hide()
		
		$(':button').click(function() { //type 속성값이 button인 것들을 click 할 때, hr 태그를 숨겨주세요.
			$('hr').hide()
			//$(this).hide() ==> 클릭한 버튼에 해당하는 것만 숨겨주세요.
		})
	})
</script>
</head>
<body>
	<hr>
	<input type="text">
	<input type="button" value="버튼1">
	<button>버튼2</button>
	<hr>
</body>
</html>

 

jQuery 객체는 배열 형태로 움직인다.