我正在用 HTML5 制作横幅,我需要它在 20 秒后关闭。
它应该是 dhtml.external.close(); 并在 20 秒后设置超时。谁能帮我这个?
也许有可能以这种方式做某事?
var close = document.createElement('a');
close.style.display = 'block';
close.href = "#";
close.innerHTML = 'CLOSE';
close.onclick = function() {
dhtml.external.close();
}
document.body.appendChild(close);
});
但只是以某种方式设置时间?