본문 바로가기
프론트엔드

주소 연결하기

by 쩨이1 2024. 5. 14.
<!--  버튼 및 클릭 이벤트 처리 ( black-button 은 . black-button 으로 css 적용 )-->
<button id="redirectButton" class="black-button">캘린더</button>

<script>
    // 버튼 이벤트 처리(위의 id 와 getElementById()의 괄호 아이디 동일하게) 
    document.getElementById("redirectButton").addEventListener("click", function() {
 
        // 버튼을 클릭하면 지정된 URL로 이동( board-front/DatePicker/index.html은 파일명)
        window.location.href = "http://127.0.0.1:5500/board-front/DatePicker/index.html";
 
    });
</script>