所以我离开了我的旧项目,决定做一个像trello.com这样的网站,它只是一个任务列表网站,我想让任务消失一段时间后,但我不知道如何创建一个时间,我试图让一个string
什么都没有,我尝试了一切我知道的帮助这是js
//Don't care about the comment code
/*let todos = document.querySelector('ul')
let form = document.querySelector('form')
let idk = document.querySelector("[name='todo']")
let todo = []
*/
let timer = 80
/*function addtodos(todostext) {
todo.push(todostext)
const li = document.createElement('li')
const button = document.createElement('button')
li.innerHTML = todostext
button.innerHTML = "done"
todos.appendChild(li)
li.appendChild(button)
}
form.onsubmit =(event) =>{
event.preventDefault();
addtodos(idk.value)
}*/
function minustimer() {
--timer;
}
document.write(timer)
在setInterval
的匿名函数中,您可以删除任务项(而不是我的console.log)。作为setInterval
的回调,该项目将在给定的特定时间后删除。基本上,setInterval
等待一段时间来执行代码块。更多信息见https://developer.mozilla.org/en-US/docs/Web/API/setInterval
function minustimer(){
setInterval(()=>{
console.log("Remove the item after 5000 milliseconds")
},5000)
}
minustimer()
function clearInTimeout(timeSecond) {
setTimeout(() => {
// use you code clear
document.write("clear")
//
}, timeSecond * 1000)
}
clearInTimeout(5);
"clear"5秒后打印