HTML

HTML

<dialog> - 모달 구현

버튼 close const button = document.querySelector("#button"); const dialog = document.querySelector(".dialog"); button.addEventListener("click", () => { dialog.showModal(); }); //close 버튼 클릭시 모달 닫기 const close = document.querySelector("#close"); close.addEventListener("click", () => { dialog.close(); }); //모달 바깥 클릭시 모달 닫기 dialog.addEventListener("click", (event) => { if (event.target.nodeName === "..

youngyun213
'HTML' 카테고리의 글 목록