jquery 01 버튼 클릭 시 메시지 사라지는 효과

프론트엔드/Jquery|2021. 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>

댓글()
구독