我刚刚弄清楚如何使用 javascript 为我的重定向页面回显动态倒计时。我很好奇当倒计时只剩下 1 秒时如何回显“秒”,但我该怎么做呢?
这是我的代码:
<script>
var counter = 5;
setInterval (function()
{
counter--;
if(counter < 1)
{
window.location = 'login.php';
}
else
{
document.getElementById("count").innerHTML = counter;
}
}, 1000);
</script>
--
echo "<table><tr><td> You will be redirected in <div id=\"count\">5</div> seconds.</td></tr></table>";
它回显“在 5/4/3/2/1 秒内重定向”。虽然是 OC,但当倒计时达到 1 时,我会被那个 S 困扰。任何帮助将不胜感激。