작성자 없음
작성자 정보가 삭제된 글입니다.
해결된 질문
작성
·
326
0
작성된 코드는 똑같은데 타이머가 작동하지 않아요 ㅠㅠ min과 sec 두 변수 모두 String으로 감싸줘보기도 하고 min "+" sec 부분을 String으로 감싸주기도 해봤는데 해결이 안돼요
let auth = () => {
const token = String(Math.floor(Math.random() * 1000000)).padStart(6, "0");
document.getElementById("number").innerText = token;
document.getElementById("number").style.color = "#" + token;
let time = 180;
setInterval(function () {
if (time >= 0) {
let min = Math.floor(time / 60);
let sec = Stirng(time % 60).padStart(2, "0");
document.getElementById("timer").innerText = min + ":" + sec;
time = time - 1;
} else {
document.getElementById("finish").disabled = true;
}
}, 1000);
};