728x90 프론트엔드 개발42 useEffect, interface, loading, API.. 보호되어 있는 글 입니다. 2023. 6. 20. 일정 기간 alert창 띄우기 document.addEventListener('click', function () { let calendarEl = document.getElementById('calendar'); if (new Date() >= new Date('2023/06/03 21:00:00') && new Date() < new Date('2023/07/07 00:00:00')) { alert('사용할 수 없습니다'); } }) 2023. 6. 2. 새로고침 할 때마다 이미지 변경 let images = [ "../static/images/image0.jpg", "../static/images/image1.jpg", ]; let randomIndex = Math.floor(Math.random() * images.length); let selectedImage = images[randomIndex]; let imageElement = document.getElementById("randomImg"); imageElement.src = selectedImage; 2023. 5. 23. 팝업창 띄우기 function popup() { window.open("popup", "popup", "left=1100, top=350, width=500, height=400, history=no, resizable=no, status=no, scrollbars=yes, menubar=no") } 2개 하고싶다면? 2023. 5. 23. Ucaught TypeError: Cannot read properties of null (reading 'addEventListener') 보호되어 있는 글 입니다. 2023. 4. 21. 지식 보호되어 있는 글 입니다. 2023. 3. 2. 이전 1 2 3 4 5 6 7 다음 728x90