我想动态地创建多个 divs 。 每个人在设定时间后都应该删除自己 。 我有函数可以创建 divs 和 cutdown 时间 。 我不知道如何将其连接在一起 。 还有一个问题是, 如何管理动态添加元素的 ID?
function creatediv(e)
{
ward = document.createElement( div );
ward.className="dynamic";
ward.id = id;
id++;
ward.style.pixelLeft = mouseX(e);
ward.style.pixelTop = mouseY(e);
document.body.appendChild(ward);
}
function timer(ID, time)
{
if(time > 0)
{
--time;
s=time%60;
m=Math.floor((time%3600)/60);
var S = document.getElementById(ID);
S.style.color = "white";
document.getElementById(ID).innerHTML =((m<10)?"0"+m:m)+":"+((s<10)?"0"+s:s);
setTimeout(function () {timer(ID,time)}, 1000);
}
if(time == 0)
{
return true;
}
}
Any hint is very much appreciated. Thanks