jquery 01 버튼 클릭 시 메시지 사라지는 효과
프론트엔드/Jquery2021. 3. 17. 17:23
<!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-3.6.0.min.js"></script>
<script>
$(document).ready(function() {
$("button").click(function(){
$("p").hide();
});
});
</script>
</head>
<body>
<p>메시지 : 제이쿼리를 공부하고 있습니다.</p>
<button>메시지 삭제</button>
</body>
</html>
'프론트엔드 > Jquery' 카테고리의 다른 글
jquery 06 mousedown()와 mouseup() 메소드 (0) | 2021.03.17 |
---|---|
jquery 05 mouseenter()와 mouseleave() 메소드 (0) | 2021.03.17 |
jquery 04 mouseenter() 메소드 (0) | 2021.03.17 |
jquery 03 퀴즈 프로그램 만들기 (0) | 2021.03.17 |
jquery 02 다중 이벤트 처리하기 (0) | 2021.03.17 |
댓글()