Top

01. 브라우저 객체 : window 객체 메서드 : windows.alert() : 알림창 표시하기

{
    const btn = document.querySelector("#sample1 .btn1");
    btn.addEventListener("click", () => {
        alert("알림창");
    });
}

02. 브라우저 객체 : window 객체 메서드 : windows.close() : 새로운 창 닫기

{
    const btn = document.querySelector("#sample2 .btn1");
    btn.addEventListener("click", () => {
        const conf = confirm("오늘 공부할 준비가 되었습니까?");

        document.querySelector("#sample2 .view").innerText = conf;
    });
}

03. 브라우저 객체 : window 객체 메서드 : windows.focus() : 페이지 포커스 설정

{
    const btn = document.querySelector("#sample3 .btn1");
    btn.addEventListener("click", () => {
        const conf = prompt("오늘 공부할 준비가 되었습니까?");

        document.querySelector("#sample3 .view").innerText = conf;
    });
}